YIem`s Blog -心比天高命比纸薄-链接找不到的请在站内搜索内容!
首页
关于
关键字
IG
的文章
iOS-数据库-数据库创建
由 YIem 撰写于
2016-03-04
浏览:5096 评论:0
iOS-数据库-ViewController.m 调用- 数据库附件(1)iOS-数据库-Student类-附件(2)iOS-数据库-数据库创建DataBaseHandle.h//// DataBaseHandle.h// UI17_数据库//// Created by YIem on 16/3/3.// Copyright © 2016年[...]
iOS-数据库-Student类-附件(2)
由 YIem 撰写于
2016-03-04
浏览:5290 评论:0
iOS-数据库-ViewController.m 调用- 数据库附件(1)iOS-数据库-Student类-附件(2)
iOS-数据库-ViewController.m 调用- 数据库附件(1)
由 YIem 撰写于
2016-03-03
浏览:5824 评论:0
iOS-数据库-ViewController.m 调用- 数据库附件(1)
iOS-文件夹操作-文件管理器(创建/删除/改名)-NSFileManager
由 YIem 撰写于
2016-03-03
浏览:6319 评论:0
iOS-初级数据持久化_复杂对象的存储-自定义Student类
由 YIem 撰写于
2016-03-03
浏览:6012 评论:0
iOS-初级数据持久化_简单对象的读写(NSString/NSArray/NSDictionary/NSData)写入本地磁盘
由 YIem 撰写于
2016-03-03
浏览:6721 评论:0
iOS-网络数据请求-视频异步下载播放
由 YIem 撰写于
2016-03-02
浏览:5939 评论:0
iOS-网络数据请求-异步图片下载
由 YIem 撰写于
2016-03-02
浏览:4634 评论:0
iOS-Post异步-网络请求-网络数据请求
由 YIem 撰写于
2016-03-01
浏览:5466 评论:0
iOS-get异步网络请求-网络数据请求
由 YIem 撰写于
2016-03-01
浏览:4697 评论:0
iOS-UI-XML数据解析-DOM方法
由 YIem 撰写于
2016-03-01
浏览:4953 评论:0
iOS-UI-XML数据解析-SAX方法
由 YIem 撰写于
2016-03-01
浏览:5408 评论:0
iOS-UI-JOSN数据解析-第三方方法
由 YIem 撰写于
2016-03-01
浏览:4489 评论:0
iOS-UI-JOSN数据解析-系统方法
由 YIem 撰写于
2016-03-01
浏览:5388 评论:0
iOS-UI-UITabBarControllerDelegate-标签视图控制器
由 YIem 撰写于
2016-01-30
浏览:5370 评论:0
iOS-UI-UITabBarControllerDelegate-标签视图控制器@interface AppDelegate ()<UITabBarControllerDelegate> @end@implementation AppDelegate(void)dealloc{ [_window release]; [super [...]
iOS-UI-UITableView 的编辑模式-插入-删除-
由 YIem 撰写于
2016-01-25
浏览:4651 评论:0
import "RootViewController.h"import "Student.h"@interface RootViewController ()<UITableViewDataSource, UITableViewDelegate>@property (nonatomic, retain) NSMutableDiction[...]
iOS-UI-UITabkeView -tableView整体刷新-单行刷新 方法
由 YIem 撰写于
2016-01-23
浏览:4454 评论:0
tableView整体刷新 重新执行所有协议方法 [_tableView reloadData]; 单行刷新// 参数1: 需要刷新的下标 // 参数2: 刷新动画 [_tableView reloadRowsAtIndexPaths:@[_index] withRowAnimation:UITableViewRowAnimationRight];
iOS-UI_TableView- 行高-头部高度-脚部高度
由 YIem 撰写于
2016-01-23
浏览:4646 评论:0
// 高度控制// 行高(CGFloat)tableView:(UITableView )tableView heightForRowAtIndexPath:(NSIndexPath )indexPath{ return 100;}// 头部高度(CGFloat)tableView:(UITableView *)tableView heightF[...]
iOS-UI-TableView-分割线样式-分割线颜色-行(Cell)高
由 YIem 撰写于
2016-01-23
浏览:4336 评论:0
// 分割线样式tableV.separatorStyle = UITableViewCellSeparatorStyleSingleLine; // 分割线颜色 tableV.separatorColor = [UIColor greenColor]; // 行高 - 如果使用协议方法设置行高, 此句无效 tableV.rowHeight = 200;
iOS-UI-导航视图控制器-UINavigationController-背景图片设置
由 YIem 撰写于
2016-01-20
浏览:4481 评论:0
// 背景图片 [navigation.navigationBar setBackgroundImage:[UIImage imageNamed:@"10425.jpg"] forBarMetrics:UIBarMetricsDefault]; ![ // 背景图片[navigation.navigationBar set[...]
iOS-UI-导航视图控制器-UINavigationController-部分属性
由 YIem 撰写于
2016-01-20
浏览:3854 评论:0
// 前景色 navigation.navigationBar.barTintColor = [UIColor cyanColor]; // 背景色// navigation.navigationBar.backgroundColor = [UIColor cyanColor];// 边框色 navigation.navigation[...]
iOS-UI-UIKit框架-UIKit-事件手势
由 YIem 撰写于
2016-01-19
浏览:4821 评论:0
#import "ViewController.h" @interface ViewController ()@property (nonatomic, retain) UILabel *label;@end@implementation ViewController(void)dealloc{ [_label release[...]
iOS-UI - 假夜间模式-VC 屏幕遮住
由 YIem 撰写于
2016-01-19
浏览:5265 评论:0
/******* 假夜间模式 *********/ // 开关 UISwitch *sw = [[UISwitch alloc] initWithFrame:CGRectMake(100, 200, 100, 100)]; [sw addTarget:self action:@selector(swAction:) forControlEvents[...]
iOS-UI- SetViewController-抽屉效果
由 YIem 撰写于
2016-01-19
浏览:6088 评论:0
SetViewController *setVC = [[SetViewController alloc]init];// 注意坐标设置 setVC.view.frame = CGRectMake(-150, 0, 150, self.view.frame.size.height); [self addChildViewControll[...]
iOS-UI-Button按钮自定义图标-图片样式切换
由 YIem 撰写于
2016-01-19
浏览:4507 评论:0
iOS-UI-Button按钮自定义图标-图片样式切换 UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];button.frame = CGRectMake(100, 300, 200, 50); // 正常状态 [button setBackgroundImage[...]
1
...
3
4
5
6
7
...
9
Yiem
心比天高,命比纸薄。
文章
1300
评论
165
分类
16
标签
1300
页面
1
浏览
1300
随机文章
2015-11-11 C语言 C ...
Objective-C考试-OC ...
今天是2016年11月03 ...
QQ十八年了--- 看看 ...
20180810-最新苹果开 ...
#年付7美元VPS-支持 ...
macOS 10.15 Beta 新 ...
Apple更新:苹果开发 ...
便宜年付10美元VPS推 ...
《折叠苍穹》 十一、 ...
Tags
ios(119)
便宜vps(119)
洛杉矶vps(107)
美国vps(105)
vps(98)
ios开发(91)
KVM VPS(89)
过年(77)
洛杉矶便宜VPS(73)
PayPal购买VPS(73)
还有多少天过年(71)
春节(64)
最新文章
《折叠苍穹》十六、十七、...
《折叠苍穹》 二十一、二...
《折叠苍穹》 十一、十二...
《折叠苍穹》六、七、八、...
《折叠苍穹》 一、二、三...
AI 写的小说,《折叠苍...
Xcode Versio...
一段和 AI 的瞎扯的内...
北京之行
请珍重,不相送。
最新评论
YIem
:
是的,需要发票的话还[...]
leeson
:
我也被坑了,前两年是[...]
YIem
:
安装完可以删除
绝对小白菜
:
下载好的Window[...]
啊鱼竿哦哦哦
:
哈哈哈
Links
帮助教程
HelpDocsHub
ipv6测试
个人博客
赵容部落
Typecho主题模版