摘要: 1. 首先保证你的电脑上已经生成正常的开发者证书,已经可以正常用iPhone,iPad,iTouch进行真机调试。 我的证书--》iPhone Developer: YITANG HE (开发者证书)--》专用密钥(私钥) 这时候会生成 p12类型的证书,名字随便取,这里我取名为“证书” 填好登录密 阅读全文
posted @ 2016-05-11 15:55 阳光普照大地 阅读(207) 评论(0) 推荐(0) 编辑
摘要: // UIBlurEffectStyleLight UIBlurEffectStyleExtraLight UIBlurEffectStyleDark UIBlurEffect *effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleExtr 阅读全文
posted @ 2016-05-11 15:52 阳光普照大地 阅读(116) 评论(0) 推荐(0) 编辑
摘要: NSString *titleStr = @"琳小兮"; //先截取字符串,拿到第一个字符 NSString *firstStr = [titleStr substringToIndex:1]; //判断是不是中文开头的 BOOL isFirst = [self isChineseFirst:fir 阅读全文
posted @ 2016-03-21 18:17 阳光普照大地 阅读(3541) 评论(0) 推荐(0) 编辑
摘要: 调试步骤 1.假设已经你已经有了苹果账号,下载并安装好了Xcode7 2. 打开Xcode-> Preferences ->Accounts 点加号增加一个Apple ID 3.添加后发现 多了一行以Apple ID 账号名称为名称的Team,我的是 fox sky,如图所示,iOS/Mac 都显示 阅读全文
posted @ 2016-03-21 09:47 阳光普照大地 阅读(212) 评论(0) 推荐(0) 编辑
摘要: //一个section刷新     NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2];     [tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnim 阅读全文
posted @ 2016-03-15 11:28 阳光普照大地 阅读(918) 评论(0) 推荐(0) 编辑
摘要: 虽然网上关于CocoaPods安装教程多不胜数,但是我在安装的过程中还是出现了很多错误,所以大家可以照下来步骤装一下,我相信会很好用. 前言 在iOS项目中使用第三方类库可以说是非常常见的事,但是要正确地配置他们有时候是非常繁琐的事情,幸运的是CocoaPods是一个很好的解决方案。 什么是Coco 阅读全文
posted @ 2016-03-12 17:20 阳光普照大地 阅读(170) 评论(0) 推荐(0) 编辑
摘要: defaults write com.apple.finder AppleShowAllFiles -bool true 此命令显示隐藏文件defaults write com.apple.finder AppleShowAllFiles -bool false 此命令关闭显示隐藏文件 阅读全文
posted @ 2016-01-14 10:30 阳光普照大地 阅读(130) 评论(0) 推荐(0) 编辑
摘要: iOS开发多线程篇—GCD的常见用法一、延迟执行1.介绍iOS常见的延时执行有2种方式(1)调用NSObject的方法[selfperformSelector:@selector(run)withObject:nilafterDelay:2.0];// 2秒后再调用self的run方法(2)使用GC... 阅读全文
posted @ 2016-01-08 16:35 阳光普照大地 阅读(193) 评论(0) 推荐(0) 编辑
摘要: NSFileManager判断一个给定路劲是否为文件夹[self.fileManagerfileExistsAtPath:isDirectory:];用于执行一般的文件系统操作 (reading and writing is done via NSData, et. al.).主要功能包括:从一个文... 阅读全文
posted @ 2016-01-08 12:05 阳光普照大地 阅读(132) 评论(0) 推荐(0) 编辑
摘要: label.font=[UIFontfontWithName:@"Arial-BoldItalicMT"size:24];字体名如下:Font Family: American TypewriterFont: AmericanTypewriterFont: AmericanTypewriter-Bo... 阅读全文
posted @ 2015-12-28 11:08 阳光普照大地 阅读(794) 评论(0) 推荐(0) 编辑