麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 學院 > 開發設計 > 正文

IOS學習筆記2015-03-27我理解的OC-代理模式

2019-11-14 19:21:54
字體:
來源:轉載
供稿:網友

案例1

KCButton.h////  KCButton.h//  PRotocol&Block&Category////  Created by Kenshin Cui on 14-2-2.//  Copyright (c) 2014年 Kenshin Cui. All rights reserved.//#import <Foundation/Foundation.h>@class KCButton;//一個協議可以擴展另一個協議,例如KCButtonDelegate擴展了NSObject協議@protocol KCButtonDelegate <NSObject>@required //@required修飾的方法必須實現-(void)onClick:(KCButton *)button;@optional //@optional修飾的方法是可選實現的-(void)onMouSEOver:(KCButton *)button;-(void)onMouseout:(KCButton *)button;@end@interface KCButton : NSObject#pragma mark - 屬性#pragma mark 代理屬性,同時約定作為代理的對象必須實現KCButtonDelegate協議@property (nonatomic,retain) id<KCButtonDelegate> delegate;#pragma mark - 公共方法#pragma mark 點擊方法-(void)click;@end
KCButton.m////  KCButton.m//  Protocol&Block&Category////  Created by Kenshin Cui on 14-2-2.//  Copyright (c) 2014年 Kenshin Cui. All rights reserved.//#import "KCButton.h"@implementation KCButton-(void)click{    NSLog(@"Invoke KCButton's click method.");    //判斷_delegate實例是否實現了onClick:方法(注意方法名是"onClick:",后面有個:)    //避免未實現ButtonDelegate的類也作為KCButton的監聽    if([_delegate respondsToSelector:@selector(onClick:)]){        [_delegate onClick:self];    }}@endMyListener.h////  MyListener.h//  Protocol&Block&Category////  Created by Kenshin Cui on 14-2-2.//  Copyright (c) 2014年 Kenshin Cui. All rights reserved.//#import <Foundation/Foundation.h>@class KCButton;@protocol KCButtonDelegate;@interface MyListener : NSObject<KCButtonDelegate>-(void)onClick:(KCButton *)button;@endMyListener.m////  MyListener.m//  Protocol&Block&Category////  Created by Kenshin Cui on 14-2-2.//  Copyright (c) 2014年 Kenshin Cui. All rights reserved.//#import "MyListener.h"#import "KCButton.h"@implementation MyListener-(void)onClick:(KCButton *)button{    NSLog(@"Invoke MyListener's onClick method.The button is:%@.",button);}@endmain.m////  main.m//  Protocol&Block&Category////  Created by Kenshin Cui on 14-2-2.//  Copyright (c) 2014年 Kenshin Cui. All rights reserved.//#import <Foundation/Foundation.h>#import "KCButton.h"#import "MyListener.h"int main(int argc, const char * argv[]) {    @autoreleasepool {                KCButton *button=[[KCButton alloc]init];        MyListener *listener=[[MyListener alloc]init];        button.delegate=listener;        [button click];        /* 結果:         Invoke KCButton's click method.         Invoke MyListener's onClick method.The button is:<KCButton: 0x1001034c0>.         */    }    return 0;}
我們通過例子模擬了一個按鈕的點擊過程,有點類似于java中事件的實現機制。通過這個例子我們需要注意以下幾點內容:id可以表示任何一個ObjC對象類型,類型后面的”<協議名>“用于約束作為這個屬性的對象必須實現該協議(注意:使用id定義的對象類型不需要加“*”);MyListener作為事件觸發者,它實現了KCButtonDelegate代理(在ObjC中沒有命名空間和包的概念,通常通過前綴進行類的劃分,“KC”是我們自定義的前綴)在.h文件中如果使用了另一個文件的類或協議我們可以通過@class或者@protocol進行聲明,而不必導入這個文件,這樣可以提高編譯效率(注意有些情況必須使用@class或@protocol,例如上面KCButton.h中上面聲明的KCButtonDelegate協議中用到了KCButton類,而此文件下方的KCButton類聲明中又使用了KCButtonDelegate,從而形成在一個文件中互相引用關系,此時必須使用@class或者@protocol聲明,否則編譯階段會報錯),但是在.m文件中則必須導入對應的類聲明文件或協議文件(如果不導入雖然語法檢查可以通過但是編譯鏈接會報錯);使用respondsToSelector方法可以判斷一個對象是否實現了某個方法(需要注意方法名不是”onClick”而是“onClick:”,冒號也是方法名的一部分);屬性中的(nonatomic,retain)不是這篇文章的重點,在接下來的文章中我們會具體介紹。

 

案例2

////  WPContactsViewController.h//  OC-UI-表單-單元格////  Created by wangtouwang on 15/3/26.//  Copyright (c) 2015年 wangtouwang. All rights reserved.//#import <UIKit/UIKit.h>@interface WPContactsViewController : UIViewController{    UITableView *_tableView;//表單UI控件    NSMutableArray *_mutableArrayContacts;//聯系人集合模型    NSIndexPath *_selectedIndexPath;//當前選中的組和行}@end
////  WPContactsViewController.m//  OC-UI-表單-單元格////  Created by wangtouwang on 15/3/26.//  Copyright (c) 2015年 wangtouwang. All rights reserved.//#import "WPContactsViewController.h"#import "WPContacts.h"#import "WPContactsGroup.h"@interface WPContactsViewController ()<UITableViewDataSource,UITableViewDelegate,UIAlertViewDelegate>@end@implementation WPContactsViewController- (void)viewDidLoad {    [super viewDidLoad];    //初始化數據    [self initObjectData];        //創建一個分組樣式的UITableView    _tableView=[[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStyleGrouped];        //設置數據源,注意必須實現對應的UITableViewDataSource協議    _tableView.dataSource=self;        //設置代理    _tableView.delegate=self;        [self.view addSubview:_tableView];}- (void)didReceiveMemoryWarning {    [super didReceiveMemoryWarning];    // Dispose of any resources that can be recreated.}#pragma mark 加載數據-(void)initObjectData{     _mutableArrayContacts=[[NSMutableArray alloc]init];        WPContacts *contact1=[WPContacts initStaticWithFirstName:@"Cui" andLastName:@"Kenshin" andPhoneNumber:@"18500131234"];    WPContacts *contact2=[WPContacts initStaticWithFirstName:@"Cui" andLastName:@"Tom" andPhoneNumber:@"18500131237"];    WPContactsGroup *group1=[WPContactsGroup initStaticWithName:@"C" andDescript:@"With names beginning with C" andConcats:[NSMutableArray arrayWithObjects:contact1,contact2, nil]];    [_mutableArrayContacts addObject:group1];         WPContacts *contact3=[WPContacts initStaticWithFirstName:@"Dui" andLastName:@"JACK" andPhoneNumber:@"13712133321"];    WPContacts *contact4=[WPContacts initStaticWithFirstName:@"Dui" andLastName:@"LUCY" andPhoneNumber:@"13712133322"];    WPContactsGroup *group2=[WPContactsGroup initStaticWithName:@"D" andDescript:@"With names beginning with D" andConcats:[NSMutableArray arrayWithObjects:contact3,contact4, nil]];    [_mutableArrayContacts addObject:group2];    }#pragma mark 返回分組數-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{    NSLog(@"計算分組數");    return _mutableArrayContacts.count;}#pragma mark 返回每組行數- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{    NSLog(@"計算每組(組%lu)行數",(unsigned long)section);//    WPContactsGroup *group1 = _mutableArrayContacts[section];    return  ((WPContactsGroup *)_mutableArrayContacts[section])._concats.count;}#pragma mark返回每行的單元格- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{     NSLog(@"生成單元格(組:%lu,行%lu)",(unsigned long)indexPath.section,(unsigned long)indexPath.row);   WPContactsGroup *group= _mutableArrayContacts[indexPath.section];    WPContacts *contacts = group._concats[indexPath.row];    UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:nil];    cell.textLabel.text=[contacts getName];    cell.detailTextLabel.text = [contacts _phoneNumber];    return cell;}#pragma mark 返回每組頭標題名稱- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{     NSLog(@"生成組(組%lu)名稱",(unsigned long)section);    WPContactsGroup *group =  _mutableArrayContacts[section];    return group._name;}#pragma mark 返回每組尾部說明- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{    NSLog(@"生成尾部(組%lu)詳情",(unsigned long)section);    return ((WPContactsGroup *)_mutableArrayContacts[section])._descript;}#pragma mark 生成索引- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView{    NSLog(@"生成組索引");    NSMutableArray *indexs = [[NSMutableArray alloc] init];    for (WPContactsGroup *group in _mutableArrayContacts) {        [indexs addObject:group._name];    }    return indexs;}#pragma mark 設置分組標題高度- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{    NSLog(@"設置分組標題高度");    return 25;}#pragma mark 設置分組尾部內容高度- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{    NSLog(@"設置分組尾部內容高度");    return 20;}#pragma mark 設置每行高度- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{       NSLog(@"設置每行高度");    return 30;}#pragma mark 復寫設置點擊行觸發事件(復寫的方法是在TableViewDelegate協議中已有,回調)-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{    NSLog(@"觸發我吧");     _selectedIndexPath=indexPath;    //獲取單元格包裝的對象WPContacts   WPContacts *contacts = ((WPContactsGroup *)_mutableArrayContacts[indexPath.section])._concats[indexPath.row];    //初始化彈出框    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"System Info" message:[contacts getName] delegate:self cancelButtonTitle:@"Cancle" otherButtonTitles:@"OK", nil];    //設置窗口樣式    alertView.alertViewStyle=UIAlertViewStylePlainTextInput;    //獲取文本框    UITextField *textFild =  [alertView textFieldAtIndex:0];    //設置文本框內容    textFild.text = contacts._phoneNumber;    //顯示窗口    [alertView show];}#pragma mark 設置彈出框后續按鈕事件 復寫UIAlerViewDelegate協議 的點擊按鈕 clickedButtonAtIndex方法- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{    NSLog(@"設置彈出框后續按鈕事件 clickedButtonAtIndex");    if (buttonIndex==1) {        //獲取文本框內容        NSString *phoneNumber = [alertView textFieldAtIndex:0].text;            //獲取選中的UITableViewCell 包裝的對象       WPContacts *contacts =  ((WPContactsGroup *)_mutableArrayContacts[_selectedIndexPath.section])._concats[_selectedIndexPath.row];        contacts._phoneNumber = phoneNumber;                 NSArray *indexPaths=@[_selectedIndexPath];//需要局部刷新的單元格的組、行            //此處優化 將全局跟新 該變到 選擇行 局部更新        [_tableView reloadRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationLeft];                //[_tableView reloadData];    }}@end

 

 

 

 

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 色中射 | 福利四区 | 毛片免费视频播放 | 国产一区二区免费在线观看视频 | 毛片视频网站在线观看 | 久久久久99一区二区三区 | 毛片免费视频观看 | www.777含羞草| 国产日韩一区二区三区在线观看 | 日日草夜夜操 | 美女污污在线观看 | 欧美亚洲综合网 | 毛片小网站| 一级电影免费在线观看 | 91久久国产露脸精品国产护士 | 成年免费大片黄在线观看岛国 | 欧日韩| 国产羞羞视频在线观看 | 久久国产精品久久久久久久久久 | 黄色特级视频 | 欧美成人一区二区三区 | 欧美日韩在线视频一区二区 | 久久sp| 国产91九色在线播放 | 欧美人与zoxxxx另类9 | 亚洲国产精久久久久久久 | 黄色网址免费在线播放 | 99精品国产小情侣高潮露脸在线 | 特级黄一级播放 | 国产a级网站| 国产91九色 | 日本在线播放一区二区三区 | 羞羞视频免费视频欧美 | 国产papa | 久色精品视频 | 免费在线观看亚洲 | 天堂福利电影 | 久久国产成人精品国产成人亚洲 | 91精品国产乱码久久桃 | 久久国产精品久久久久久电车 | 久久精品4 |