UITableView.02:【1】拖入一个UITableView【2】将TableView的dataSource与控制器连接【3】首先得遵循UITableView的数据源协议【4】将数据plist文件拖入 【5】代码1.viewDidLoad只加载一次,所以用来加载plist文件中的数据。 ...
分类:
其他好文 时间:
2014-08-05 00:12:38
阅读次数:
252
-(void)tableView:(UITableView *)tableViewdidSelectRowAtIndexPath:(NSIndexPath *)indexPath{ [tableView deselectRowAtIndexPath:indexPath a...
分类:
其他好文 时间:
2014-08-04 20:56:37
阅读次数:
283
_tableView = [[UITableView alloc] init]; _tableView.delegate = self; _tableView.dataSource = self; _tableView.frame = CGRectMake(kZero, 6...
分类:
其他好文 时间:
2014-08-04 13:39:27
阅读次数:
268
1.建立tableView DataTable = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 320, 420)]; [DataTable setDelegate:self]; [DataTable setDataSource:self]...
分类:
其他好文 时间:
2014-08-04 10:35:07
阅读次数:
215
-(void)tableView:(UITableView *)tableViewdidSelectRowAtIndexPath:(NSIndexPath *)indexPath{ [tableView deselectRowAtIndexPath:indexPath ...
分类:
其他好文 时间:
2014-08-02 15:15:03
阅读次数:
142
iOS下用一行代码实现cell的parallax效果
兼容 tableview ,collectionview...
分类:
移动开发 时间:
2014-08-02 12:51:23
阅读次数:
231
点击取消,让删除按钮弹回去[tableView setEditing:NO]初学 ios 真是大菜鸟,这么简单的一个问题搞了 3 个小时
分类:
其他好文 时间:
2014-08-01 19:14:02
阅读次数:
303
第一部分 个性化控件(View)主要介绍那些不错个性化的View,包括ListView、ActionBar、Menu、ViewPager、Gallery、GridView、ImageView、ProgressBar及其他如Dialog、Toast、EditText、TableView、Activit...
分类:
移动开发 时间:
2014-08-01 19:01:12
阅读次数:
386
最近要做一个项目,有个账户设置界面,看了微博、微信、QQ,他们的账号设置都比较原生态没做什么处理。春雨医生的账号不错,做了许多处理。不说废话直接上代码。第一步://UserTableViewCell.h这里定义第一种Cell#import @interface UserTableViewCell :...
分类:
移动开发 时间:
2014-08-01 13:34:01
阅读次数:
311
# 改变iOS7上tableview的分割线长、颜色问题
if ([self.tableView
respondsToSelector:@selector(setSeparatorInset:)]) {
[self.tableView
setSeparatorInset:UIEdgeInsetsZero];
[self.tableView
set...
分类:
移动开发 时间:
2014-07-31 13:32:06
阅读次数:
198