2012-08-12 5 views
0

(인터페이스 빌더에서) 사용자 정의 설계된 TableView 셀을 임베드하려고합니다. 처음에는 자체 섹션에 몇 개의 텍스트 필드를 추가하려고합니다. 나는 엉망으로 보이는 모든 것을 잘못하고 있지만 사용자 정의 설계된 tableview를 보여줄 수있다. 또한 추가 섹션을 추가하는 방법에 대해 명확하지 않습니다. 누군가 올바른 방향으로 안내 할 수 있습니까? 나는 다음과 같이 시도했다 : http://developer.apple.com/library/ios/#documentation/UserExperience/Conceptual/TableView_iPhone/TableViewCells/TableViewCells.html#//apple_ref/doc/uid/TP40007451-CH7-SW20인터페이스 빌더에 정의 된 사용자 정의 셀을 표시하는 방법은 무엇입니까?

조금 잃어 버렸다.

헤더 파일 :

enter image description here

내 코드입니다 :

enter image description here

이 인터페이스 빌더에서 내 설정은 다음과 같습니다

처럼 보이는 것입니다
#import <UIKit/UIKit.h> 

@interface SearchTableViewController : UITableViewController 
{ 

} 
@property (nonatomic, retain) IBOutlet UITableViewCell *priceRanceCell; 
@end 

구현 :

당신은 heightForRowAtIndexPath:를 구현해야
#import "SearchTableViewController.h" 


@interface SearchTableViewController() 

@end 

@implementation SearchTableViewController 
@synthesize priceRanceCell=_priceRanceCell; 




- (id)initWithStyle:(UITableViewStyle)style 
{ 
    self = [super initWithStyle:style]; 
    if (self) { 
     // Custom initialization 
    } 
    return self; 
} 


- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil 
{ 
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; 
    if (self) { 
     self.title = NSLocalizedString(@"Some Search", @"Some Search"); 
     self.tabBarItem.image = [UIImage imageNamed:@"search"]; 
    } 
    return self; 
} 




- (void)viewDidLoad 
{ 
    [super viewDidLoad]; 

    // Uncomment the following line to preserve selection between presentations. 
    // self.clearsSelectionOnViewWillAppear = NO; 

    // Uncomment the following line to display an Edit button in the navigation bar for this view controller. 
    // self.navigationItem.rightBarButtonItem = self.editButtonItem; 
} 

- (void)viewDidUnload 
{ 
    [super viewDidUnload]; 
    // Release any retained subviews of the main view. 
    // e.g. self.myOutlet = nil; 
} 

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{ 
    return (interfaceOrientation == UIInterfaceOrientationPortrait); 
} 

#pragma mark - Table view data source 

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView 
{ 
#warning Potentially incomplete method implementation. 
    // Return the number of sections. 
    return 1; 
} 

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
{ 
#warning Incomplete method implementation. 
    // Return the number of rows in the section. 
    return 1; 
} 

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    static NSString *CellIdentifier = @"SearchViewCell"; 
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; 

    // Configure the cell... 
    NSInteger section = [indexPath section]; 


    switch (section) { 
     case 0: // First cell in section 1 


      return self.priceRanceCell; 


      break; 
     default: 
      // Do something else here if a cell other than 1,2,3 or 4 is requested 

      return cell; 

      break; 
    } 








    return cell; 
} 

/* 
// Override to support conditional editing of the table view. 
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    // Return NO if you do not want the specified item to be editable. 
    return YES; 
} 
*/ 

/* 
// Override to support editing the table view. 
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    if (editingStyle == UITableViewCellEditingStyleDelete) { 
     // Delete the row from the data source 
     [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade]; 
    } 
    else if (editingStyle == UITableViewCellEditingStyleInsert) { 
     // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view 
    } 
} 
*/ 

/* 
// Override to support rearranging the table view. 
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath 
{ 
} 
*/ 

/* 
// Override to support conditional rearranging of the table view. 
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    // Return NO if you do not want the item to be re-orderable. 
    return YES; 
} 
*/ 

#pragma mark - Table view delegate 

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    // Navigation logic may go here. Create and push another view controller. 
    /* 
    <#DetailViewController#> *detailViewController = [[<#DetailViewController#> alloc] initWithNibName:@"<#Nib name#>" bundle:nil]; 
    // ... 
    // Pass the selected object to the new view controller. 
    [self.navigationController pushViewController:detailViewController animated:YES]; 
    */ 
} 

@end 
+1

이 대답을보십시오. http://stackoverflow.com/a/410832/385017 –

답변

1

. 또한 dequeueReusableCellWithIdentifier: 인 경우 결과가 nil이 될 수 있으므로 셀을 만들어야합니다. 로직을 수정하여 해당 섹션이 0이더라도 시도하지 마십시오.

0

인터페이스 빌더에서 사용자 정의 셀을 클릭하고 높이를 기억하십시오. 그런 다음 사용할 테이블보기를 클릭하고 메모리에서 행 높이를 입력하십시오.

관련 문제