真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

[IOS]用自定義的cell來創(chuàng)建UITableView-創(chuàng)新互聯(lián)

步驟:

創(chuàng)新互聯(lián)是專業(yè)的曲松網(wǎng)站建設公司,曲松接單;提供網(wǎng)站制作、網(wǎng)站設計,網(wǎng)頁設計,網(wǎng)站設計,建網(wǎng)站,PHP網(wǎng)站建設等專業(yè)做網(wǎng)站服務;采用PHP框架,可快速的進行曲松網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!

1.創(chuàng)建自定義的CellView.xib,操作New File->User Interface->View->命名cellView

2.往上面拖放一個UITableViewCell,然后向其中拖放添加UILabel,UITextField,UIButton,如下圖:

[IOS]用自定義的cell來創(chuàng)建UITableView

3.創(chuàng)建一個類Cell,操作New File->Cocoa Touch->Objective-C class->Class:Cell,Subclass of:UITableViewCell

4.將cellView.xib中的Cell的class設置為Cell類,然后可以將label關聯(lián)到Cell.h中,也可以設置Label的Tag屬性為1,后面有兩種方法調用xib文件,一種是通過tag,其次就是通過cell。注意:xib文件中的File's Owner只能關聯(lián)到viewController,這里自定義的cell.xib沒有可以關聯(lián)的contrller文件,所以不需要寫,只需要把xib中的cell控件關聯(lián)到cell類就可以了

5.ViewController.h:

#import  @interface ViewController : UIViewController @property (retain, nonatomic) IBOutlet UITableView *tableView; @property(retain,nonatomic)NSArray *arr; @end
6.ViewController.m:

#import "ViewController.h" #import "Cell.h"  static NSString *strIdentifier = @"strIdentifier"; @interface ViewController ()  @end  @implementation ViewController  - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {     self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];     if (self) {         // Custom initialization     }     return self; }  - (void)viewDidLoad {     [super viewDidLoad];     self.arr = [NSArray arrayWithObjects:@"1",@"2",@"3",@"4",@"5", nil];     //獲得包含tableViewcell的nib文件     UINib *nib = [UINib nibWithNibName:@"cellView" bundle:nil];     //用這個nib文件注冊成tableView中表示為strIdentifier的cell     [self.tableView registerNib:nib forCellReuseIdentifier:strIdentifier]; } -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {     return [self.arr count]; }  -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {     //詢問是否有未使用的,表示為strIdentifier的cell,如果沒有,并且tableview注冊過,系統(tǒng)會建一個新的cell     UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:strIdentifier];     //用這個自定義的cell可以用綁定的方式修改內容,要將自定義的cell.xib的class修改成Cell類     ((Cell *)cell).label.text = [self.arr objectAtIndex:[indexPath row]];          //也可以用tag的方式查找到需要修改的view     //((UILabel *)[cell viewWithTag:1]).text = [self.arr objectAtIndex:[indexPath row]];     return cell; }  - (void)didReceiveMemoryWarning {     [super didReceiveMemoryWarning];     // Dispose of any resources that can be recreated. }  - (void)dealloc {     [_tableView release];     [self.arr release];     [super dealloc]; } @end
運行結果圖:

[IOS]用自定義的cell來創(chuàng)建UITableView


另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。


網(wǎng)頁標題:[IOS]用自定義的cell來創(chuàng)建UITableView-創(chuàng)新互聯(lián)
分享路徑:http://weahome.cn/article/hpoog.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部