上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 36 下一页
摘要: 具体表现为两个view间已经pushview并且执行了下一个页面的viewdid函数但是仍然卡死在前一个页面上原因: 第二个页面有for循环函数,count-1结果这次获取的array为空,也没有做array count大于零的判断致使count - 1成为了max值很大不停得循环。 阅读全文
posted @ 2014-08-29 10:25 如来藏 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 使用Keychain存储用户敏感信息iOS的keychain服务提供了一种安全的保存私密信息(密码,序列号,证书等)的方式,每个ios程序都有一个独立的keychain存储。相对于 NSUserDefaults、文件保存等一般方式,keychain保存更为安全,而且keychain里保存的信息不会因... 阅读全文
posted @ 2014-08-28 10:22 如来藏 阅读(1984) 评论(0) 推荐(0) 编辑
摘要: 具体问题原因是url中输入的有中文,那么这个就看作非法的字符无法识别。这种的必须使用post方式来发送消息。具体为: tmp = mainurl; [parameters appendString:key]; [parameters appendString:value];NSURL * downl... 阅读全文
posted @ 2014-08-14 16:17 如来藏 阅读(1016) 评论(0) 推荐(0) 编辑
摘要: - (BOOL)disablesAutomaticKeyboardDismissal { return NO;} 阅读全文
posted @ 2014-08-14 16:15 如来藏 阅读(819) 评论(0) 推荐(0) 编辑
摘要: UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; btn.frame = CGRectMake(5, self.alertView.lableView.frame.size.height + self.checkBox.fra... 阅读全文
posted @ 2014-08-08 09:48 如来藏 阅读(347) 评论(0) 推荐(0) 编辑
摘要: if (parameters) { int genderNumber = 1; self.token = loginToken; self.personPK = kidPK; self.personName = personNameL; self.personNickName = nickName... 阅读全文
posted @ 2014-08-06 18:33 如来藏 阅读(410) 评论(0) 推荐(0) 编辑
摘要: UIImage *imageLater = image1;UIImage *imagePre = image2;if (imageLater == imagePre){....} 阅读全文
posted @ 2014-08-05 11:46 如来藏 阅读(318) 评论(0) 推荐(0) 编辑
摘要: if ( [[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0){ //check whether the permission open for user in settings AVAuthorizationStatus au... 阅读全文
posted @ 2014-08-05 11:44 如来藏 阅读(320) 评论(0) 推荐(0) 编辑
摘要: In the context of iOS mobile app development, a clone is simply an app that is based off another mobile app. A clone usually has more or less the same... 阅读全文
posted @ 2014-07-10 11:55 如来藏 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 如下图,即使图片尺寸不规范,xcode5也可以正常预览(这里我提供的尺寸是57*57, 而需要的是120*120)但编译运行失败,报的错是:Images.xcassets: error: The app icon set named "AppIcon" did not have any applic... 阅读全文
posted @ 2014-07-10 11:13 如来藏 阅读(563) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 36 下一页