文章分类 -  ios之UItableView,[自定义]UITableViewCell样式,懒加载

摘要:https://www.jianshu.com/p/920eb75f7284 2018.01.10 17:28 字数 320 阅读 629评论 0喜欢 2 2018.01.10 17:28 字数 320 阅读 629评论 0喜欢 2 2018.01.10 17:28 字数 320 阅读 629评论 阅读全文
posted @ 2019-03-29 09:48 sundaysios 阅读(692) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/2247f65bf18d - (void)scrollViewDidScroll:(UIScrollView *)scrollView { if (scrollView == self.tableView) { CGFloat sectionHea 阅读全文
posted @ 2019-03-26 18:46 sundaysios 阅读(414) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/04e660465572 2017.01.13 16:27* 字数 182 阅读 3868评论 0喜欢 1 解决部分cell设置AccessoryType,子视图适配问题,主要原因的contentView的宽度(width)大小的改变 如图,对勾i 阅读全文
posted @ 2019-01-18 11:10 sundaysios 阅读(647) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/7b6e966642ce 姜流儿96 关注 2017.07.26 17:14* 字数 243 阅读 372评论 0喜欢 3 最近有列表多选删除的需求,以前一直是自己实现这种效果,这次该用一下系统自带的,也算是狠狠的踩了一把坑。记录一下,提醒自己,也 阅读全文
posted @ 2019-01-07 10:50 sundaysios 阅读(623) 评论(0) 推荐(0) 编辑
摘要:自定义UItalbeView的使用 - (DropDownTableView *)dropDownView { if (!_dropDownView) { _dropDownView = [DropDownTableView dropDown]; _dropDownView.delegate = s 阅读全文
posted @ 2019-01-04 14:44 sundaysios 阅读(270) 评论(0) 推荐(0) 编辑
摘要:https://github.com/bestswifter/MySampleCode MySampleCode 由于demo比较多,我就把所有的都合并到这个项目中,因此很抱歉您需要下载整个repo才能查看其中的某一个demo。 不过都是些源码,下载速度非常快。我更建议您使用git clone,这样 阅读全文
posted @ 2018-12-28 14:18 sundaysios 阅读(310) 评论(0) 推荐(0) 编辑
摘要:2016-04-20 10:57 编辑: cocopeng 分类:iOS开发 来源:bestswifter的简书 本文授权转载,作者:bestswifter(简书) 本文是直播分享的简单文字整理,视频地址:优酷、YouTube Demo 地址:KtTableView MVC 讨论解耦之前,我们要弄明 阅读全文
posted @ 2018-12-28 14:17 sundaysios 阅读(124) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/bf4ad5ecde18 2015.06.08 00:58* 字数 2554 阅读 18411评论 40喜欢 154 2015.06.08 00:58* 字数 2554 阅读 18411评论 40喜欢 154 2015.06.08 00:58* 字 阅读全文
posted @ 2018-12-28 13:24 sundaysios 阅读(399) 评论(0) 推荐(0) 编辑
摘要://滚动到最后一行 - (void)scrollToBottomWithAnimated:(BOOL)animated { if (!self.messages.count) { return; } // 获取最后一行 NSIndexPath *lastIndex = [NSIndexPath in 阅读全文
posted @ 2018-12-21 15:23 sundaysios 阅读(116) 评论(0) 推荐(0) 编辑
摘要:右侧标记设置颜色 UIImage *imageGray=[UIImage imageNamed:@"accessoryGray"]; UIImageView* accessoryViewGray=[[UIImageView alloc] initWithImage:imageGray]; CGFlo 阅读全文
posted @ 2018-12-21 12:26 sundaysios 阅读(989) 评论(0) 推荐(0) 编辑
摘要:// // MYCollectionViewController.m // AutoOwnerTV // // Created by admin on 2018/6/26. // Copyright © 2018年 autoTV. All rights reserved. // #import "M 阅读全文
posted @ 2018-09-21 09:30 sundaysios 阅读(132) 评论(0) 推荐(0) 编辑
摘要:2016年03月12日提 2016年03月12日提 2016年03月12日提 2016年03月12日提 2016年03月12日提 2016年03月12日提 2016年03月12日提 如图所示, 当点击字母H时, 改变他的颜色, 我没找到这个方法, 请教一下怎么处理 默认排序时间排序 1个回答 答案对 阅读全文
posted @ 2018-08-25 10:49 sundaysios 阅读(892) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/nb_token/article/details/51970339 2016年07月20日 17:16:09 UITalbeVie去除分割线可以使用: 1、tableview提供的方法去除所有的分割线 [tableView setSeparatorStyl 阅读全文
posted @ 2018-07-24 14:57 sundaysios 阅读(816) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/62ac18f8cf69 2016.11.22 15:07* 字数 435 阅读 4473评论 0喜欢 13 2016.11.22 15:07* 字数 435 阅读 4473评论 0喜欢 13 2016.11.22 15:07* 字数 435 阅读 阅读全文
posted @ 2018-07-19 16:32 sundaysios 阅读(1015) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/4a3c70de103d 2017.01.16 14:58* 字数 319 阅读 3567评论 8喜欢 10赞赏 1 2017.01.16 14:58* 字数 319 阅读 3567评论 8喜欢 10赞赏 1 2017.01.16 14:58* 字 阅读全文
posted @ 2018-07-19 15:43 sundaysios 阅读(2218) 评论(0) 推荐(0) 编辑
摘要:超简单实现iOS列表的索引功能 http://www.code4app.com/thread-25788-1-1.html [复制链接] 来自:ijt_family 分类:iOS精品源码上传时间:2018-1-14 21:49:58 Tag: 超简单实现iOS列表的索引功能 http://www.c 阅读全文
posted @ 2018-07-06 18:36 sundaysios 阅读(225) 评论(0) 推荐(0) 编辑
摘要:置顶2016年01月26日 08:42:27 阅读数:14212 置顶2016年01月26日 08:42:27 阅读数:14212 阅读数:14212 UITableView很多情况下我们需要分组section,并且需要加上头部视图header和底部视图footer,默认情况下这两个视图是不固定的它 阅读全文
posted @ 2018-07-05 11:52 sundaysios 阅读(1560) 评论(0) 推荐(0) 编辑
摘要:源码推荐(6.26):三级联想菜单(也可以当二级),tableView reloadData动画(swift) 2015-06-26 09:01 编辑: lansekuangtu 分类:iOS开发 来源:CocoaChina代码库 0 10723 2015-06-26 09:01 编辑: lanse 阅读全文
posted @ 2018-07-04 14:32 sundaysios 阅读(155) 评论(0) 推荐(0) 编辑
摘要:2015年10月07日 09:07:45 阅读数:261 2015年10月07日 09:07:45 阅读数:261 阅读数:261 // // RootViewController.m // UI10_3个UITableView省市区联动 // // Created by dllo on 15/9/ 阅读全文
posted @ 2018-07-04 14:27 sundaysios 阅读(285) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/c400669e2c1c 2017.07.19 18:14* 字数 1068 阅读 1314评论 11喜欢 40 2017.07.19 18:14* 字数 1068 阅读 1314评论 11喜欢 40 2017.07.19 18:14* 字数 10 阅读全文
posted @ 2018-07-04 14:20 sundaysios 阅读(410) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示