
移动应用
文章平均质量分 77
cuichengjie
这个作者很懒,什么都没留下…
展开
-
添加联系人界面
#import "FYZAddAddressPersonController.h"#import "AddAddressPersonView.h"#import "DXAlertView.h"#import "FYZPhotoLibraryController.h"#import "FYZAddressBookNavigationController.h"@interface FYZA原创 2014-09-13 13:05:01 · 548 阅读 · 0 评论 -
通讯录
@interface FYZAddressBookDetailController : UIViewController@property (nonatomic, retain) AddressPerson *person;@end原创 2014-09-13 13:01:31 · 375 阅读 · 0 评论 -
addressBookHelper
/** * Model类:存储数据的类叫做Model类.(AddressPerson,PhotoInfo) Model层的类:只要和数据有关的类都是Model层的类.(比如:数据存储的类,数据处理的类,数据请求类,数据解析类). *//** * MVC:M层的任务是为了分担Controller数据处理的功能,让C只处理M与V之间的通讯,不做数据处理.而AddressBookHe原创 2014-09-13 13:07:41 · 486 阅读 · 0 评论 -
addressBookHelpercell的定制
@protocol AddressBookCellDelegate - (void)didClickCallButtonAtIndexPath:(NSIndexPath *)indexPath;@end@interface AddressBookCell : UITableViewCell@property (nonatomic, retain) UIImageView *photoV原创 2014-09-14 09:58:38 · 408 阅读 · 0 评论 -
通讯录图库界面,两种cell的定制
@interface FYZMalePersonCell : UITableViewCell@property (nonatomic, retain) PhotoInfo *photoInfo;//接收c传入的M//动态设置cell的高度+ (CGFloat)heightForRowWithModel:(PhotoInfo *)photoInfo;@end原创 2014-09-14 10:02:54 · 426 阅读 · 0 评论