항상 코드로만 작성하다가
storyboard로 디자인하고 싶어서 그 과정을 기술
위와 같이 테이블뷰에 cell을 추가하고 원하는 디자인가이드대로 UI 작성
Identifier를 원하는 이름으로 지정
그리고 tableViewDelegate함수인 tableView: cellForRowAtIndexPath:에서 아래와 같이 기술
NSString* identifier = @"ResultPriceCell";
UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:identifier forIndexPath:indexPath];
return cell;
cell안의 뷰들을 가지고 오고 싶은경우 view의 태그를 위와 같이 준 후
역시나 tableViewDelegate함수인 tableView: cellForRowAtIndexPath:에서 아래와 같이 기술
NSString* identifier = @"ResultPriceCell";
UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:identifier forIndexPath:indexPath];
UILabel* label = [cell viewWithTag:1002];
label.text = @"제목";
return cell;
'프로그래밍 > iOS' 카테고리의 다른 글
[iOS] UITableView section 수정하기(folderable) (0) | 2017.04.06 |
---|---|
[iOS] XCode8.3 에러내용 확인하기 (0) | 2017.04.05 |
[iOS] UIButton touch 영역 늘리기 (3) | 2017.04.04 |
[iOS] facebook 로그인 버튼 붙이기 (0) | 2017.03.27 |
[iOS] 숫자에 천단위 구분자(,) 넣어주기 (0) | 2017.03.03 |