摘要:
一、效果图:二、概述实现一个好友列表,可以分为男女两个选项,并且实现搜索和排序功能。我的数据是放在plist文件中。三、代码简述代码结构如图,首先自定义一个Cell。cell.h 1 #import 2 3 @interface MyCell : UITableViewCell 4 5 @property (nonatomic,retain) UIButton *tickButton; 6 @property (nonatomic,retain) UIImageView *selectView; 7 @property (nonatomic,retain) UIImageView *he... 阅读全文
摘要:
一、概述 策略模式:定义一系列的算法,把每一个算法封装起来, 并且使它们可相互替换。本模式使得算法可独立于使用它的客户而变化。也称为政策模式(Policy)。(Definea family of algorithms,encapsulate each one, andmake them interchangeable. Strategy lets the algorithmvary independently from clients that use it.)(策略模式把对象本身和运算规则区分开来,其功能非常强大,因为这个设计模式本身的核心思想就是面向对象编程的多形性的思想。) 策略模... 阅读全文