溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么在iOS中使用Xcode自定義代碼塊

發(fā)布時間:2021-06-04 17:17:41 來源:億速云 閱讀:182 作者:Leah 欄目:移動開發(fā)

本篇文章為大家展示了怎么在iOS中使用Xcode自定義代碼塊,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

一 . 意義在于節(jié)約時間成本

like
我在編譯器鍵入 strong, 回車
自動生成
@property (nonatomic, strong) <#Class#> *<#object#>;

二 . 如何自定義代碼塊

如下圖所示 選中一行代碼右鍵 crate code snippet

右上角方框快速進入

怎么在iOS中使用Xcode自定義代碼塊

圖1

下圖填入描述, 以及快捷方式

怎么在iOS中使用Xcode自定義代碼塊

圖2

三 . iOS Xcode自定義代碼塊遷移

  1. Command + Shift + G. 前往如下路徑的文件夾

  2. 路徑 : ~/Library/Developer/Xcode/UserData/CodeSnippets

  3. 把文件夾內(nèi)部的文件復(fù)制, 粘貼到另一臺電腦的Xcode同樣的文件夾中即可

  4. 重啟xcode

四 . 代碼塊編寫

下面我舉個栗子 . 0.O

- (UITableView *)<#tableview#> {
 
 if(!<#tableview#>) {
 
 <#tableview#> = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStylePlain];
 <#tableview#>.delegate =self;
 <#tableview#>.dataSource =self;
 [<#tableview#> registerClass:[<#cell#> class] forCellReuseIdentifier:@"cellIdentifier"];
}
 return <#tableview#>;
}

#pragma mark - tableView delegate
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
 
 return <#expression#>
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
 
 return <#expression#>
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
 
 <#UITableViewCell#> *cell = [tableView dequeueReusableCellWithIdentifier:@"cellIdentifier"];
 return cell;
 
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
 
}

注: <#class#> 即為可以替換的詞語.

我再舉個栗子

@property (nonatomic, assign) <#Class#> <#object#>;

上述內(nèi)容就是怎么在iOS中使用Xcode自定義代碼塊,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI