2012-11-13 42 views
4

我有兩個視圖控制器,GroupListViewController和GroupDetailViewController,來回切換,當通過點擊行單元切換時, 錯誤,我甚至沒有xib。我以編程方式完成所有組件。在這裏搜索相同的問題,這不是我的類型。終止應用程序由於未捕獲的異常'NSInternalInconsistencyException',原因:'無法在軟件包中加載NIB:

在下面的代碼片段

,「CustomGroupListViewCell * PLCC」 CustomGroupListViewCell是一個自定義的UITableViewCell,您可以在這裏實現轉儲一個空,

列表的代碼。

GroupListViewController.h

#import <UIKit/UIKit.h> 


@class GroupDetailViewController; 

@interface GroupListViewController : UITableViewController 
{ 
    NSArray * contentArray; 
    GroupDetailViewController * dvController; 
} 

@property (nonatomic, retain) GroupDetailViewController * dvController; 

@end 

GroupListViewController.m

#import "GroupListViewController.h" 
#import "CustomGroupListViewCell.h" 
#import "ZYAppDelegate.h" 
#import "GroupDetailViewController.h" 

@interface GroupListViewController() 
@end 

@implementation GroupListViewController 

@synthesize dvController; 

- (void) viewDidLoad 
{ 
contentArray = [[NSArray arrayWithObjects:@"heyun", @"wushi", @"ios", nil]retain]; 

[super viewDidLoad]; 

} 


- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil 
{ 
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; 
    if (self) { 
    // Custom initialization 
    } 
    return self; 
} 

- (void) dealloc 
{ 
    [dvController release]; 
    [super dealloc]; 
} 

- (void)didReceiveMemoryWarning 
{ 
    [super didReceiveMemoryWarning]; 
    // Dispose of any resources that can be recreated. 
} 

- (void)viewWillAppear:(BOOL)animated 
{ 
    [super viewWillAppear: animated]; 
} 

- (void)viewDidAppear:(BOOL)animated 
{ 
    [super viewDidAppear: animated]; 
} 

- (void)viewWillDisappear:(BOOL)animated 
{ 
    [super viewWillDisappear: animated]; 
} 

- (void)viewDisDisappear:(BOOL)animated 
{ 
    [super viewDidDisappear: animated]; 
} 

- (NSInteger)numberOfSectionsInTableView: (UITableView *)tableView 
{ 
    return 1; 
} 

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
{ 

    return [contentArray count]; 
} 

// custom row height 
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    // dynamic with whether the cell has the gourp image or not.. 
    return 160; 
} 

// Customize the appearance of table view cells 
- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    static NSString *CellIdentifier = @"PartyListCustomCell"; 

    CustomGroupListViewCell *plcc = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; 

    if(plcc == nil) 
    { 
     plcc = [[[CustomGroupListViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; 
    } 


    // set up custom cell 
    plcc.gourpTitle.text = @"gourpTitle"; 


    return plcc; 

} 

- (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{ 

    if (dvController == nil) 
    { 
     GroupDetailViewController *aController = [[GroupDetailViewController alloc] initWithNibName:@"GroupDetailViewController" bundle:nil]; 

     self.dvController = aController; 

     [aController release]; 
    } 

    [dvController updateRowNumber:indexPath.row]; 
    [[self navigationController] pushViewController:dvController animated:YES];  

} 

@end 

GroupDetailViewController.h

#import <UIKit/UIKit.h> 

@interface GroupDetailViewController : UITableViewController 
{ 
    int rowNumber;  
} 

@property(readwrite) int rowNumber; 
- (void) updateRowNumber:(int) theindex; 

@end 

GroupDetailViewController.m

#import "GroupDetailViewController.h" 

@interface GroupDetailViewController() 

@end 

@implementation GroupDetailViewController 

@synthesize rowNumber; 

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil 
{ 
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; 
    if (self) 
    { 
     // Custom initialization 
    } 
    return self; 
} 

- (void) updateRowNumber: (int) theindex 
{ 

    rowNumber = theindex + 1; 

    UILabel *label1 = [[UILabel alloc]initWithFrame:CGRectMake(50.0, 20.0, 200.0, 50.0)]; 

    label1.text = [NSString stringWithFormat:@"row %i was clicked ", rowNumber]; 
    [self.view addSubview: label1]; 
    [label1 release]; 

} 

- (void)dealloc 
{ 

    [super dealloc]; 
} 

- (void)viewDidLoad 
{ 

    UILabel *label1 = [[UILabel alloc]initWithFrame:CGRectMake(50.0, 20.0, 200.0, 50.0)]; 

    label1.text = [NSString stringWithFormat:@"row %i was clicked ", rowNumber]; 

    [self.view addSubview: label1]; 


    [super viewDidLoad]; 
    [label1 release]; 
    // Do any additional setup after loading the view from its nib. 
} 

- (void)fetchedData: (NSData *)responseData 
{ 
    // parse out the json data 
} 

- (void)viewDidUnload 
{ 
    [super viewDidUnload]; 
    // Do any additional setup after loading the view from its nib. 
} 

- (void)viewWillAppear:(BOOL)animated 
{ 
    [super viewWillAppear: animated]; 
} 

- (void)viewDidAppear:(BOOL)animated 
{ 
    [super viewDidAppear: animated]; 
} 


- (void)didReceiveMemoryWarning 
{ 
    [super didReceiveMemoryWarning]; 
    // Dispose of any resources that can be recreated. 
} 

@end 

回答

7

當通過調用

[[GroupDetailViewController alloc] initWithNibName:@"GroupDetailViewController" bundle:nil]; 

初始化您的視圖控制器,我們期待着您提供相應的廈門國際銀行(「GroupDetailViewController」)。如果你不希望使用廈門國際銀行,只需撥打

[[GroupDetailViewController alloc] init] 

,並在您GroupDetailViewController類實現loadView

+0

thnx爲你的快速反應,它確實爲我工作! – max

相關問題