您好,登錄后才能下訂單哦!
如果你是一位開發(fā)人員在開發(fā)過程中會發(fā)現(xiàn)有些代碼無論是在同一個工程中還是在不同工程中使用率會很高,有經(jīng)驗的人會直接封裝在一個類里,或者寫成一個宏定義或者把這些代碼收集起來,下次直接使用,或者放到xcode的代碼片庫里,直接使用, 從而提高開發(fā)效率;
當一個代碼片在一個或多個工程之中經(jīng)常出現(xiàn)時,把他封裝在一個類里面,在使用時候直接傳參即可實現(xiàn)對于功能,或者直接把這類放到另一個工程中同樣使用;
使用UIAlertView舉例
創(chuàng)建一個XF_UIKit類,對于聲明文件和實現(xiàn)文件為
// // XF_UIKit.h // Demo // // Created by DolBy on 13-6-17. // Copyright (c) 2013年 新風作浪. All rights reserved. // #import <Foundation/Foundation.h> @interface XF_UIKit : NSObject +(void)showAlert:(NSString *)title withMessage:(NSString *)message witchCancelButtonTitle:(NSString *)cancelButtonTitle otherButtonTitles:(NSString *)otherButtonTitles, ... NS_REQUIRES_NIL_TERMINATION; @end
// // XF_UIKit.m // Demo // // Created by DolBy on 13-6-17. // Copyright (c) 2013年 新風作浪. All rights reserved. // #import "XF_UIKit.h" @implementation XF_UIKit +(void)showAlert:(NSString *)title withMessage:(NSString *)message witchCancelButtonTitle:(NSString *)cancelButtonTitle otherButtonTitles:(NSString *)otherButtonTitles, ... NS_REQUIRES_NIL_TERMINATION { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title message:message delegate:self cancelButtonTitle:cancelButtonTitle otherButtonTitles:otherButtonTitles, nil]; [alert show]; [alert release]; } @end
- (void)viewDidLoad { [super viewDidLoad]; [XF_UIKit showAlert:@"警告" withMessage:@"新風作浪的測試 " witchCancelButtonTitle:@"OK" otherButtonTitles: nil]; // Do any additional setup after loading the view, typically from a nib. }
在 iOS開發(fā)中那些高效常用的宏一文例舉了宏的使用,此處不再贅述;
在屬性面板下面有一欄庫面板選擇條,有一項Code Snippet Library有iOS下OS X 和 User(用戶自定義的)代碼片段存儲
做過開發(fā)的都知道使用表示圖單元格比較頻繁,經(jīng)常頻繁寫他們的delegate方法,如果把它們收集起來
#pragma mark - #pragma mark UITableViewDataSource and UITableViewDelegate Methods -(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { return 1; } -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{ return 10; } -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; } return cell; }
然后會彈出一個編輯框,然后進行一個簡單編輯,title表示你這個代碼塊標題,Summary 對這段代碼片的簡單介紹,Completion Shortcut表示一個快捷鍵,在我們工程中只要輸入快捷鍵就可以顯示整段代碼片;
相應設置
把參數(shù)放在兩個#號之間,比如 #參數(shù)#
編輯完畢選擇Done,在User下即可看到TbaleView代碼塊
在使用的時候兩種方式
①直接把這個代碼塊拖到工程中;
②在工程里面輸入自己設置的快件建代碼,比如剛剛設置的XFTableView,真?zhèn)€代碼塊全部出現(xiàn);
在資源庫(Libary)/Developer/Xcode/UserData/CodeSnippets下存放的就是你自定義的代碼片段,如果重裝Xcode記得備份哦!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。