摘要: 自定义cell,button,tableView 阅读全文
posted @ 2016-06-20 17:51 yelan@yelan 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 在终端输入:curl -fsSL https://raw.githubusercontent.com/supermarin/Alcatraz/deploy/Scripts/install.sh | sh提示安装完成后,重启Xcode。就可以在Xcode的顶部菜单中找到Alcatraz,点击Packa... 阅读全文
posted @ 2016-01-12 16:10 yelan@yelan 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 1 //隐藏UITableViewCell的分隔线2 [self.tableViewList setSeparatorStyle:UITableViewCellSeparatorStyleNone];3 //自定义cell选中时的背景色4 cell.selectedBackgroun... 阅读全文
posted @ 2015-11-20 20:06 yelan@yelan 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 1 一:在AppDelegate中统一定制导航栏风格 2 //设置导航栏颜色,标题字体和颜色,还有阴影效果 3 [[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:26/255.0 green:154/2... 阅读全文
posted @ 2015-11-20 19:58 yelan@yelan 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 经常用到的命令有:1.从服务器端下载代码到本地在终端中输入svn checkout svn://localhost/mycode --username=gwh --password=123 /Users/apple/Documents/code将服务器中mycode仓库的内容下载到/Users/ap... 阅读全文
posted @ 2015-11-20 18:15 yelan@yelan 阅读(426) 评论(1) 推荐(0) 编辑
摘要: 今天下午写了个Demo,让键盘弹出时整个View上移,隐藏时整个View回到原位。用通知做的 1 #import "ViewController.h" 2 3 @interface ViewController () 4 @property(nonatomic, strong)UITextFiel... 阅读全文
posted @ 2015-11-13 18:28 yelan@yelan 阅读(148) 评论(0) 推荐(0) 编辑
摘要: iOS9中警告框的使用。可以进行用户名和密码的输入,实现页面交互,下面是ViewController的全部代码。以前的错误也没有删除,以警示自己。 1 #import "ViewController.h" 2 3 @interface ViewController () 4 @property(n... 阅读全文
posted @ 2015-11-12 18:50 yelan@yelan 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 1 @interface MyPlanarCodeViewController () 2 //定义计时器 3 @property (nonatomic, strong) NSTimer *timer; 4 @end 5 6 @implementation MyPlanarCodeViewCo... 阅读全文
posted @ 2015-11-09 14:18 yelan@yelan 阅读(440) 评论(0) 推荐(0) 编辑
摘要: 将Bundle Version改大一点儿,然后重新编译打包,通过Application Loader上传到苹果后台。不影响原来发布的版本号。参考:http://blog.csdn.net/th_gsb/article/details/47808205 阅读全文
posted @ 2015-11-03 18:56 yelan@yelan 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 从今日起,恢复更新,争取每天更新一篇,用随笔记录自己每天的成长,每天进步一点点,加油!如果是iOS 方面的内容,基本发到博客园,否则发到个人微信公众号。 阅读全文
posted @ 2015-10-13 15:39 yelan@yelan 阅读(155) 评论(0) 推荐(0) 编辑