簡述:都是回調(diào),貌似區(qū)別并不是很大拂酣。
- Delegate - 委托:一般回調(diào)方法函數(shù)兼蜈,will did 等
- DataSource - 數(shù)據(jù)源:一般回調(diào)數(shù)據(jù)
- 但是使用時感覺并沒有特別大的區(qū)別,觀察系統(tǒng)的UITableView - Delegate 和 DataSource
// DDelegate
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
// DataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath;
簡單舉例 Delegate
- 1 寫protocol 協(xié)議
// 簡單的協(xié)議
@protocol testDelegate <NSObject>
- (void)didSelectButton:(NSInteger)index;
@end
// weak 的delegate
@interface TestDelegate : UIView
@property (nonatomic, weak) id<testDelegate> delegate;
@end
- 2 使用 delegate 連接
- (instancetype)initWithFrame:(CGRect)frame{
self = [super initWithFrame:frame];
if (self) {
CGFloat height = CGRectGetHeight(frame) / 3;
// 舉例 使用多個 button讨惩。
for (NSInteger a = 0; a < 3; a ++) {
UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
button.frame = CGRectMake(0, height * a, CGRectGetWidth(frame), height);
[button addTarget:self action:@selector(testDelegateButtonAction:) forControlEvents:UIControlEventTouchUpInside];
button.backgroundColor = [UIColor redColor];
button.tag = 8000 + a;
[self addSubview:button];
}
}
return self;
}
// 自身的 buttons 點(diǎn)擊事件,通過delegate 鏈接
- (void)testDelegateButtonAction:(UIButton *)button{
if (self.delegate && [self.delegate respondsToSelector:@selector(didSelectButton:)]) {
[self.delegate didSelectButton:button.tag - 8000];
}
}
- 3 使用 delegate 回調(diào)
// 注意使用<>
@interface ViewController ()<testDelegate>
// 注意 delegate = self;
TestDelegate *testelegateView = [[TestDelegate alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
testelegateView.delegate = self;
[self.view addSubview:testelegateView];
// delegate 回調(diào)方法
- (void)didSelectButton:(NSInteger)index{
// do something 簡單的delegate 就這么 結(jié)束了寒屯。
}
簡單的 DataSource
跟 Delegate 我覺得好像是一樣的 流程荐捻。
- 1 寫協(xié)議
// 與 delegate 一樣,只是名字不一樣罷了寡夹?
@protocol testDataSource <NSObject>
// 必須實(shí)現(xiàn):
@required
- (NSInteger)numberOfLabels;
// 可選實(shí)現(xiàn)
@optional
- (NSString *)label:(UILabel *)label titleOfIndex:(NSInteger)index;
@end
@interface TestDataSource : UIView
@property (nonatomic, weak) id<testDataSource> dateSource;
// 此處 我真不知道处面,怎么樣才能不調(diào)用,就實(shí)現(xiàn)布局菩掏。暫時只能類似tableView 的 reloadData 刷新UI魂角。
- (void)reloadData;
@end
- 2 使用 dataSource 連接
- (void)reloadData{
if (!self.dateSource) {
return;
}
// 必選 實(shí)現(xiàn) dataSource
NSInteger number = [self.dateSource numberOfLabels];
CGFloat height = CGRectGetHeight(self.bounds) / number;
for (NSInteger a = 0; a < number; a ++) {
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, height * a, CGRectGetWidth(self.bounds), height)];
[self addSubview:label];
// 可選 實(shí)現(xiàn) dataSource
if ([self.dateSource respondsToSelector:@selector(label:titleOfIndex:)]) {
NSString *title = [self.dateSource label:label titleOfIndex:a];
label.text = title;
}
}
}
- 3 使用dataSource 回調(diào)
// 注意使用<>
@interface ViewController ()<testDataSource>
// 注意使用 dataSource = self 與 reloadData
TestDelegate *testelegateView = [[TestDelegate alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
testelegateView.dateSource = self;
[self.view addSubview:testelegateView];
[testelegateView reloadData];
// dataSource 回調(diào)
- (NSInteger)numberOfLabels{
return 3;
}
- (NSString *)label:(UILabel *)label titleOfIndex:(NSInteger)index{
NSArray *arr = @[@"1",@"2",@"3"];
return arr[index];
}
其他
對于 dataSource 還有點(diǎn) 疑問,有不對的地方智绸,希望指正批評野揪。