스토리 보드를 사용하여 ViewController+TableView
4880 단어 XcodeiOSObjective-CStoryboard
프로젝트
View Controller - View
View Controller - View - Table View
TableView 설정
ViewController.h
@property (weak, nonatomic) IBOutlet UITableView *tableView;
ViewController.h
@interface ViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
ViewController.m
#define _CELLID @"cellId"
- (void)viewDidLoad
{
[super viewDidLoad];
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:_CELLID];
}
ViewController.m
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 5;//適当
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:_CELLID forIndexPath:indexPath];
cell.textLabel.text = [NSString stringWithFormat:@"Section#%02d Row#%02d", (int)indexPath.section, (int)indexPath.row];
return cell;
}
여기까지
Reference
이 문제에 관하여(스토리 보드를 사용하여 ViewController+TableView), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/fuzzball/items/1f31380971f33cd3d8fb
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(스토리 보드를 사용하여 ViewController+TableView), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/fuzzball/items/1f31380971f33cd3d8fb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)