XC: XCode, IB:Interface Builder
1. [XC] File -> New Project -> View-based Application 선택
2. [XC] Application 이름 설정(여기서는 VBA로 지정)
3. [XC] VBAViewController.xib 더블 클릭
4. [IB] Library에서 Table View를 가져다가 VBAViewController.xib의 View의 자식으로 놓는다.
5. [IB] File's Owner의 view가 Table View되도록 한다.
6. [IB] Table View의 datasource와 delegate가 Files'Owner(VBAViewController)가 되도록 한다.
7. [XC] VBAViewController.h를 열어 부모 클래스를 UIViewController에서 UITableViewController로 변경한다.
8. [XC] VBAViewController.m을 열어 아래의 함수를 추가한다.
펼쳐두기..
[code cpp] #pragma mark Table view methods - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { return 1; } // Customize the number of rows in the table view. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return 0; } // Customize the appearance of table view cells. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; } // Set up the cell... return cell; }[/code]
9. Build & Go!
매번 귀찮네. Template을 만들던지 해야지 원!
댓글 없음:
댓글 쓰기