苹果ios开发者

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2015年12月29日

摘要: 经常遇到要给tableView设置背景图片的问题,但如果直接设置背景 backgroundView的话,背景图不会显示,原因是 tableView上的cell默认是不透明的颜色,所以解决方法是 让 cell透明即可:1.给tableView设置背景view UIImageView *backImag... 阅读全文
posted @ 2015-12-29 16:52 苹果ios开发者 阅读(1135) 评论(0) 推荐(0) 编辑

2015年12月27日

摘要: http://blog.csdn.net/freewaywalker/article/details/45623433 阅读全文
posted @ 2015-12-27 21:33 苹果ios开发者 阅读(118) 评论(0) 推荐(0) 编辑

2015年12月22日

摘要: - (void)scrollsToBottomAnimated:(BOOL)animated{ CGFloat offset = self.tableView.contentSize.height - self.tableView.bounds.size.height; if (offs... 阅读全文
posted @ 2015-12-22 17:24 苹果ios开发者 阅读(1706) 评论(0) 推荐(0) 编辑

2015年12月15日

摘要: -(void)viewWillAppear:(BOOL)animated{[super viewWillAppear:animated];//开启ios右滑返回if ([self.navigationController respondsToSelector:@selector(interactiv... 阅读全文
posted @ 2015-12-15 11:46 苹果ios开发者 阅读(433) 评论(0) 推荐(0) 编辑

摘要: ios7图片作为导航的背景的话,如果想实现状态栏和导航栏一体化,那么图片高度需要增加22,也就是64,retina是128 阅读全文
posted @ 2015-12-15 10:08 苹果ios开发者 阅读(925) 评论(0) 推荐(0) 编辑

2015年12月14日

摘要: 当UITableView的style属性设置为Plain时,这个tableview的section header在滚动时会默认悬停在界面顶端。取消这一特性的方法有两种:将style设置为Grouped。这时所有的section header都会随着scrollview滚动了。不过grouped和pl... 阅读全文
posted @ 2015-12-14 15:22 苹果ios开发者 阅读(588) 评论(0) 推荐(0) 编辑

2015年10月9日

摘要: http://my.oschina.net/shede333/blog/304560 阅读全文
posted @ 2015-10-09 16:03 苹果ios开发者 阅读(165) 评论(0) 推荐(0) 编辑

2015年10月6日

摘要: //清除cookiesNSHTTPCookie *cookie;NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];for (cookie in [storage cookies]) { [s... 阅读全文
posted @ 2015-10-06 14:13 苹果ios开发者 阅读(548) 评论(0) 推荐(0) 编辑

摘要: 选择工程, 编译的 (targets)选择Build Settings 菜单查找Library Search Paths 和 Framework Search Paths, 删掉编译报warning的路径即OK 阅读全文
posted @ 2015-10-06 11:14 苹果ios开发者 阅读(163) 评论(0) 推荐(0) 编辑

2015年9月30日

摘要: http://m.blog.csdn.net/blog/tianjiqcs/38536099# 阅读全文
posted @ 2015-09-30 00:53 苹果ios开发者 阅读(129) 评论(0) 推荐(0) 编辑