UITableview 기본 소스코드 - Objective-C
개발/iOS 2022. 1. 27. 09:08반응형
헤더.
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface ViewController2 : UIViewController <UITableViewDelegate, UITableViewDataSource>
{
}
@property(nonatomic, strong) IBOutlet UILabel *oLabel1;
@property(nonatomic, strong) IBOutlet UITableView *oTableView;
@end
NS_ASSUME_NONNULL_END
소스
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 2;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *identifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
}
//cell.textLabel.text = [array objectAtIndex:indexPath.row];
cell.textLabel.text = @"1";
return cell;
}
반응형
'개발 > iOS' 카테고리의 다른 글
NSURL Request - Objective-C (0) | 2022.01.27 |
---|---|
iOS 10 이상 APNS 관련 AppDelegate에 작성되는 메소드 (0) | 2020.11.19 |
iOS 디바이스 크기 알아오기 (0) | 2018.06.07 |
iOS String에 공백 제거 (Trim) (0) | 2018.01.18 |
리모트로 아이폰 패킷 캡쳐하는 방법 (1) | 2017.12.08 |
iOS - 아이폰 디자인 가이드 (0) | 2017.12.05 |
iOS 싱글톤 객체 만드는 방법 (0) | 2017.12.01 |
iOS 커스텀 폰트 등록하기 (0) | 2017.10.30 |