今天分享下cell的单选,自定义的,不是下图这种网上找到的打对勾的,我搜了好久,基本上都是打对勾的文章,就决定自己写一篇。基本上自己的app都会有一个风格吧,咱也不能一直用打对勾的方式去做(看起来是不是很low)。
我们要实现的是下面的这种形式。瞬间好看了很多,高大上了很多是吧。
具体我来给大家介绍一下。我这种方法有可能不是很好,有大神来,欢迎多多交流。
首先在你自定义的cell里面加入一个uiimageview,因为你肯定要有选择和未选择两张图片的吧,所以这个uiimageview来切换图片。
1
|
@property(nonatomic,strong)uiimageview *seletimage;
|
注意:这里面为啥没用button,我主要考虑的是按钮如果只有一个小圆圈这么大的话,就不好点击。我的方法主要是结合uitableview中didselectrowatindexpath这个代理方法实现的。
当然,你需要在你自己的cell里面加入这个子视图,以及初始化这个对象。下面代码写在相应的位置。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//添加到cell上
[self.contentview addsubview:self.seletimage];
//初始化
-(uiimageview *)seletimage{
if (!_seletimage) {
_seletimage = [[uiimageview alloc]init];
}
return _seletimage;
}
//坐标位置
[self.seletimage mas_makeconstraints:^(masconstraintmaker *make) {
@strongify(self);
make.right.equalto(self.contentview.mas_right).with.offset(-15);
make.centery.equalto(self.self.contentview);
make.height.mas_equalto(22);
make.width.mas_equalto(22);
}];
|
然后我们还需要一个cell的viewmodel来记录cell中的各种数值变化,在这个viewmodel里我们加入一个参数用来判断是否这一行cell被点击。
1
|
@property(nonatomic) bool isselected;
|
然后在回到这个cell中,我们需要用rac来观察这个isselected的参数变化,替换图片
1
2
3
4
5
6
7
8
|
[[[racobserve(self.viewmodel, isselected) takeuntil:self.rac_prepareforreusesignal] deliveronmainthread] subscribenext:^(nsstring *x){
@strongify(self);
if ([x boolvalue]==yes) {
[self.seletimage setimage:[uiimage imagenamed:@ "alarmsetting_selected" ]];
} else {
[self.seletimage setimage:[uiimage imagenamed:@ "alarmsetting_notselected" ]];
}
}];
|
好了,最后一步,让我们回到这个cell对应的viewcontroller中,在didselectrowatindexpath上做文章。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
-( void )tableview:(uitableview *)tableview didselectrowatindexpath:(nsindexpath *)indexpath{
[tableview deselectrowatindexpath:indexpath animated:yes];
//遍历viewmodel的数组,如果点击的行数对应的viewmodel相同,将isselected变为yes,反之为no
for (nsinteger i = 0; i<[self.viewmodel.itemarray count]; i++) {
itemviewmodel *itemviewmodel = self.viewmodel.itemarray[i];
if (i!=indexpath.row) {
itemviewmodel.isselected = no;
} else if (i == indexpath.row){
itemviewmodel.isselected = yes;
}
}
[self.tableview reloaddata];
}
|
这里简单解释一下,因为每一个cell都有一个对应的viewmodel,这个viewmodel又是放在viewcontroller的viewmodel数组中的。因此遍历,取出对应点击行数的viewmodel,将参数更换,实现此效果。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://www.jianshu.com/p/24a2201cda11#