久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

如何用代碼在UIViewController 中添加UITableView

 沒原創(chuàng)_去搜索 2015-07-09

如何用代碼在UIViewController 中添加UITableView

 編程語言
專業(yè)回答
2015-06-26 17:03
運(yùn)行到
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
這個委托就會崩潰,是哪里出問題了,?,??

@interface ViewController ()<UITableViewDelegate,UITableViewDataSource>
@property (strong,nonatomic) NSArray * dataProvide,;
@end

- (void)viewDidLoad
{
[super viewDidLoad],;

_dataProvide =[NSArray arrayWithObjects:@{@"icon": @"SOE_government",@"title": @"SOE and government"},,@{@"icon": @"company_employee",,@"title": @"Company employee"},@{@"icon": @"high_level_manager",,@"title": @"High level manger"},,@{@"icon": @"SME_owner",@"title": @"SME owner"},,@{@"icon": @"sales",,@"title": @"Sales"},@{@"icon": @"liberal",,@"title": @"Liberal professions"},, nil];

CGRect gridCGRect = CGRectMake(10,, 60,, self.view.frame.size.width-20, self.view.frame.size.height-60),;
UITableView *grid = [[UITableView alloc]initWithFrame:gridCGRect],;
UITableViewCell *gridCell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
[grid addSubview:gridCell],;
[self.view addSubview:grid],;

grid.delegate = self;
grid.dataSource = self,;
}

#pragma mark -tableViewDelegate
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
return 1,;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [self.dataProvide count],;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath],;
if(cell == nil){

UITableViewCell *cell,;
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
NSDictionary *celldb = [self.dataProvide objectAtIndex:indexPath.row],;
cell.imageView.image = [celldb objectForKey:@"icon"],;
cell.textLabel.text = [celldb objectForKey:@"title"];

}
return cell,;
}
資料來源:cocoachina問答,。

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點(diǎn),。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊一鍵舉報,。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多