2017年2月28日

IOS 监听键盘的通知(NSNotificationCenter)

摘要: 通知方法: 调用通知: 移出监听 ARC的情况 阅读全文

posted @ 2017-02-28 20:04 守望星空 阅读(229) 评论(0) 推荐(0) 编辑

IOS tabelView退出键盘

摘要: /** *当开始拖拽表格的时候就会调用 * */ -(void)scrollViewWillBeginDragging:(UIScrollView *)scrollView { //退出键盘 [self.view endEditing:YES]; } 阅读全文

posted @ 2017-02-28 20:00 守望星空 阅读(124) 评论(0) 推荐(0) 编辑

IOS 创建一个可以随意拉伸不变形的图片

摘要: 创建一个扩展 UIImage的类 调用 阅读全文

posted @ 2017-02-28 16:38 守望星空 阅读(239) 评论(0) 推荐(0) 编辑

IOS enum(枚举)使用

摘要: 调用enum 阅读全文

posted @ 2017-02-28 15:18 守望星空 阅读(140) 评论(0) 推荐(0) 编辑

IOS tableView 去除分割线 和 不允许选中表格cell

摘要: //去除分割线 self.tableView.backgroundColor=[UIColor colorWithRed:235/255.0 green:235/255.0 blue:235/255.0 alpha:1.0]; self.tableView.separatorStyle=UITableViewCellSeparatorStyleNone; ... 阅读全文

posted @ 2017-02-28 13:38 守望星空 阅读(141) 评论(0) 推荐(0) 编辑

IOS 获取手机的屏幕宽度

摘要: //屏幕的宽度 CGFloat screenW=[UIScreen mainScreen].bounds.size.width; 阅读全文

posted @ 2017-02-28 10:21 守望星空 阅读(155) 评论(0) 推荐(0) 编辑

导航