YIem`s Blog -心比天高命比纸薄-链接找不到的请在站内搜索内容!
首页
关于
分类
iOS
下的文章
iOS-初级数据持久化_复杂对象的存储-自定义Student类
由 YIem 撰写于
2016-03-03
浏览:6118 评论:0
iOS-初级数据持久化_简单对象的读写(NSString/NSArray/NSDictionary/NSData)写入本地磁盘
由 YIem 撰写于
2016-03-03
浏览:6803 评论:0
iOS-POST-网络同步请求
由 YIem 撰写于
2016-03-02
浏览:4899 评论:0
iOS-POST-网络同步请求
iOS-GET-网络同步请求
由 YIem 撰写于
2016-03-02
浏览:4709 评论:0
iOS-网络数据请求-视频异步下载播放
由 YIem 撰写于
2016-03-02
浏览:6014 评论:0
iOS-网络数据请求-异步图片下载
由 YIem 撰写于
2016-03-02
浏览:4710 评论:0
iOS-Post异步-网络请求-网络数据请求
由 YIem 撰写于
2016-03-01
浏览:5558 评论:0
iOS-请求网络数据时崩溃-data = nil 的时候解决办法
由 YIem 撰写于
2016-03-01
浏览:4670 评论:0
在info的plist文件中添加下面代码(进入方法-info.plist-右键单击-Open AS->Source Code)<key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> [...]
iOS-get异步网络请求-网络数据请求
由 YIem 撰写于
2016-03-01
浏览:4774 评论:0
iOS-UI-XML数据解析-程序编译不通过,警告libxml2.tbd 解决方法
由 YIem 撰写于
2016-03-01
浏览:5137 评论:0
iOS-UI-XML数据解析-SAX方法-解析为\n的处理方法
由 YIem 撰写于
2016-03-01
浏览:4031 评论:0
// 解析数据 为\n 第一种 解决方法(判断)if (![string hasPrefix:@"\n"]) { [stu setValue:string forKey:self.elementNameStr]; }//// 解析数据 为\n 第二种 解决方法(设置解析值(\n) 为空) self.eleme[...]
iOS-UI-XML数据解析-DOM方法
由 YIem 撰写于
2016-03-01
浏览:5054 评论:0
iOS-UI-XML数据解析-SAX方法
由 YIem 撰写于
2016-03-01
浏览:5497 评论:0
iOS-UI-JOSN数据解析-第三方方法
由 YIem 撰写于
2016-03-01
浏览:4599 评论:0
iOS-UI-JOSN数据解析-系统方法
由 YIem 撰写于
2016-03-01
浏览:5492 评论:0
导航栏-标题视图 titleView - (分段)
由 YIem 撰写于
2016-02-25
浏览:5391 评论:0
// 标题视图 titleView// 创建要添加的视图对象
iOS-UI-UIButton 切圆-切弧度-边角弧度-头像-Label
由 YIem 撰写于
2016-01-30
浏览:4512 评论:0
**iOS-UI-UIButton 切圆-切弧度-边角弧度self.regButton.layer.cornerRadius = 10;**
iOS-UI-UITabBarControllerDelegate-标签视图控制器
由 YIem 撰写于
2016-01-30
浏览:5467 评论:0
iOS-UI-UITabBarControllerDelegate-标签视图控制器@interface AppDelegate ()<UITabBarControllerDelegate> @end@implementation AppDelegate(void)dealloc{ [_window release]; [super [...]
iOS-UI-UITableViewCell 的自定义-自适应高度
由 YIem 撰写于
2016-01-27
浏览:4270 评论:0
iOS-UI-UITableViewCell 的自定义-自适应高度RootVC.m
iOS-UI-UITableView-移动-是否禁止跨区
由 YIem 撰写于
2016-01-25
浏览:6233 评论:0
[上部分 链接======][1]上部分链接-同上方链接TableView里面 1 2 3 一样#warning 移动 3 - 设置是否允许移动(BOOL)tableView:(UITableView )tableView canMoveRowAtIndexPath:(NSIndexPath )indexPath{ return YES;}war[...]
iOS-UI-UITableView 的编辑模式-插入-删除-
由 YIem 撰写于
2016-01-25
浏览:4757 评论:0
import "RootViewController.h"import "Student.h"@interface RootViewController ()<UITableViewDataSource, UITableViewDelegate>@property (nonatomic, retain) NSMutableDiction[...]
iOS-UI-UITabkeView -tableView整体刷新-单行刷新 方法
由 YIem 撰写于
2016-01-23
浏览:4519 评论:0
tableView整体刷新 重新执行所有协议方法 [_tableView reloadData]; 单行刷新// 参数1: 需要刷新的下标 // 参数2: 刷新动画 [_tableView reloadRowsAtIndexPaths:@[_index] withRowAnimation:UITableViewRowAnimationRight];
iOS-UI-UITableView-Cell - 辅助视图
由 YIem 撰写于
2016-01-23
浏览:4891 评论:0
// 辅助视图// cell.accessoryType = UITableViewCellAccessoryDetailButton;// 感叹号 // cell.accessoryType = UITableViewCellAccessoryCheckmark;// 对号 // cell.accessoryType = UITableV[...]
iOS-UI-UITableView - 结构体
由 YIem 撰写于
2016-01-23
浏览:4115 评论:0
// tableView结构 // tableHeaderView + tableView + tableFooterView // tableView -> section + row // section -> header + row + footer
iOS-UI-tableView的头部脚部区域
由 YIem 撰写于
2016-01-23
浏览:4366 评论:0
// tableView的头部脚部区域 // 头 (只有高度起作用) UIView *header = [[UIView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)]; header.backgroundColor = [UIColor redColor]; tableView.tableH[...]
1
...
5
6
7
8
9
...
13
Yiem
心比天高,命比纸薄。
文章
1302
评论
165
分类
16
标签
1302
页面
1
浏览
1302
随机文章
2015-11-23- C10_函 ...
2015-12-24-// 目标 ...
“快播和百度贴吧同 ...
20180503最新iOS开发 ...
PNZHost-年付15美元 ...
【已经跑路】Hostin ...
支持支付宝支付VPS, ...
Apple更新:面向 Ap ...
Host Dare 最新优惠 ...
搬瓦工上新了 年付$ ...
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主题模版