会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
OIMM
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
6
7
8
9
10
11
12
13
14
···
44
下一页
2019年7月30日
iOS 企业证书发布App详解
该文被密码保护。
阅读全文
posted @ 2019-07-30 10:16 OIMMZC
阅读(3)
评论(0)
推荐(0)
2019年7月29日
获取手机的网络类型
摘要: #pragma mark - 获取手机的网络类型 - (NSString *)getNetconnType{ NSString *netconnType = @""; Reachability *reach = [Reachability reachabilityWithHostName:@"www.apple.com"]; ...
阅读全文
posted @ 2019-07-29 11:06 OIMMZC
阅读(177)
评论(0)
推荐(0)
2019年7月25日
在列表上方添加水印
该文被密码保护。
阅读全文
posted @ 2019-07-25 11:02 OIMMZC
阅读(5)
评论(0)
推荐(0)
2019年7月24日
tableview的一种简单的效果实现
该文被密码保护。
阅读全文
posted @ 2019-07-24 17:36 OIMMZC
阅读(1)
评论(0)
推荐(0)
invalid update:invalid number of rows in selection 0.The number of rows contained in an existing section after the update(38) must be equal to the number of rows contained in that selection.....
摘要: 当程序报这个错的时候:一般情况下是由于快速滑动过程中点击表中某一行,而且同时执行了此行的内容变化及其他方法同时执行造成。例如:字体变化、图片变化等引起的冲突,从而形成的程序崩溃。 这里是由于在快速滑动过程中,点击了某一行。造成,表格还在滑动过程中,点击的一行执行字体变化,同时执行下载操作等一系列复杂
阅读全文
posted @ 2019-07-24 17:14 OIMMZC
阅读(739)
评论(0)
推荐(0)
2019年7月10日
Development cannot be enabled while your device is locked. Please unlock your device and reattach. (0xE80000E2).
摘要: 今天在运行项目的时候报了这个问题,然后在网络搜索的方法有好几种1.数据线问题2.设置 --> 通用 --> 重置 --> 重置位置和隐私3.重启xcode 我就是重启后解决了
阅读全文
posted @ 2019-07-10 11:08 OIMMZC
阅读(1365)
评论(0)
推荐(0)
2019年6月13日
通过UIWebView加载读取本地文件
摘要: 通过UIWebView加载读取本地文件 UIWebView是苹果自带的框架,也算是苹果程序内部的浏览器,可以浏览web网页,也可以打开HTML/HTM、PDF、docx、txt等格式的文本文件,其实苹果自带的浏览器Safari就是用UIWebView来实现的,具体原理简单的说就是服务器将MIME的标
阅读全文
posted @ 2019-06-13 17:56 OIMMZC
阅读(426)
评论(0)
推荐(0)
IOS 创建NSIndexpath
摘要: 有时候需要根据tag来获取cell,需要创建NSIndexpath,我们可能会这么用: NSIndexPath *indexPath = [[NSIndexPath alloc] initWithIndex:tag]; 没有报错,但很遗憾的是通过这样的indexPath,你是怎么都获取不到cell的
阅读全文
posted @ 2019-06-13 14:52 OIMMZC
阅读(816)
评论(0)
推荐(0)
iOS UITableview 刷新指定的某一个section或cell
摘要: //某个section刷新 NSIndexSet *indexSet = [[NSIndexSet alloc] initWithIndex:2]; [tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic]; //某个cell刷新 NSIndexPath...
阅读全文
posted @ 2019-06-13 10:29 OIMMZC
阅读(741)
评论(0)
推荐(0)
刷新表格的某一行
摘要: tableview刷新某一行 [tabelView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:[NSIndexPath indexPathForRow:IndexPath.row inSection:IndexPath.section], nil] withRowAnimation:UITableViewRowAnimationNone];...
阅读全文
posted @ 2019-06-13 10:19 OIMMZC
阅读(184)
评论(0)
推荐(0)
上一页
1
···
6
7
8
9
10
11
12
13
14
···
44
下一页
公告