UIScrollVIew上添加滚动视图

摘要: 创建Scrollview的代码,简单,省略。。。。。。。。。 1.添加定时器 // 添加定时器 self.timer = [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(pageChange) user 阅读全文
posted @ 2016-11-30 11:43 哈利波特大 阅读(343) 评论(0) 推荐(0) 编辑

iOS切图

摘要: http://www.25xt.com/allcode/6941.html 自从iPhone 6/6+出现后,iOS版上的APP界面设计尺寸又发生了翻天覆地的变化。让ios一下子跟安卓看齐了。进入了移动“杂屏”时代。 之前我们知道的,在移动app开发设计中,需要解决多种设备尺寸适配问题,过去只属于A 阅读全文
posted @ 2016-11-29 17:26 哈利波特大 阅读(218) 评论(0) 推荐(0) 编辑

OC 判断字符串是否为nil、NULL、是否含有空格、null

摘要: - (BOOL)isBlankString:(NSString *)string { if (string == nil || string == NULL) { return YES; } if ([string isKindOfClass:[NSNull class]]) { return YE 阅读全文
posted @ 2016-11-24 10:34 哈利波特大 阅读(2075) 评论(0) 推荐(0) 编辑

Setting up CocoaPods master repo 卡着不动

摘要: 转发:http://www.jianshu.com/p/88d7ada1b58b CocoaPods 的简单快速安装方法(Setting up CocoaPods master repo 卡着不动,是因为淘宝镜像已经不能用) 字数830 阅读3432 评论41 喜欢14 一、git clone方法安 阅读全文
posted @ 2016-11-16 10:57 哈利波特大 阅读(2910) 评论(0) 推荐(0) 编辑

Xcode8 的适配

摘要: 本博客转发: http://www.jianshu.com/p/90d5323cf510 一、遇到的问题 1、权限以及相关设置 iOS10系统下调用系统相册、相机功能,或者苹果健康都会遇到闪退的情况,调用系统相册报错描述如下: This app has crashed because it atte 阅读全文
posted @ 2016-10-08 11:20 哈利波特大 阅读(385) 评论(1) 推荐(0) 编辑

调用系统自带的相机,日历等,将英文设置为中文

摘要: 设置info.plist中的 Localization native development region = China; Localized resources can be mixed = YES; 阅读全文
posted @ 2016-08-16 18:13 哈利波特大 阅读(250) 评论(0) 推荐(0) 编辑

判断UITableView滚动是否到底

摘要: - (void)scrollViewDidScroll:(UIScrollView *)aScrollView { CGPoint offset = aScrollView.contentOffset; CGRect bounds = aScrollView.bounds; CGSize size 阅读全文
posted @ 2016-08-16 17:59 哈利波特大 阅读(313) 评论(0) 推荐(0) 编辑

ios 分组列表头部空白处理

摘要: 在viewWillAppear里面添加如下代码://分组列表头部空白处理 CGRect frame = myTableView.tableHeaderView.frame; frame.size.height = 0.1; UIView *headerView = [[UIView alloc] i 阅读全文
posted @ 2016-08-16 16:33 哈利波特大 阅读(226) 评论(0) 推荐(0) 编辑

滑动cell 显示的按钮 类型分别是 删除 置顶 其他

摘要: - (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath { //删除按钮 UITableViewRowAction *deleteRowAction = 阅读全文
posted @ 2016-08-16 14:17 哈利波特大 阅读(122) 评论(0) 推荐(0) 编辑

获取View所在的控制器

摘要: - (UIViewController *)ViewController { id nextResponder = [self nextResponder]; while (nextResponder != nil) { if ([nextResponder isKindOfClass:[UIVie 阅读全文
posted @ 2016-08-16 14:12 哈利波特大 阅读(140) 评论(0) 推荐(0) 编辑