我設置與我添加(5) 現在我有問題,增加了TableView中的每個選項卡,這裏我UITableView in each tab 但沒有人指出每個選項卡多UIViewControllers一個UITabBr基於應用程序有一個解決方案,所以我想到了它,並嘗試了很多方法 現在的觀點是:當用戶觸摸選項卡時,首先在UIViewController中調用哪個方法? (viewDidLoad和viewWillAppear沒有工作)基礎的UIViewController在UITabBar生命週期
有一個特定的生命週期?
這裏的正常碼,沒有顯示在控制檯,當你在選項卡上單擊
#
import "MusicView.h"
@implementation MusicView
@synthesize tv;
// Customize the number of sections in the table view.
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 10;
}
// 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];
}
//cell.textLabel.text = [elements objectAtIndex:indexPath.row];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
}
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
NSLog(@"initWithNibName works");
}
return self;
}
- (void)dealloc
{
[super dealloc];
}
- (void)didReceiveMemoryWarning
{
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
#pragma mark - View lifecycle
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
NSLog(@"viewDidLoad works");
}
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
@end
感謝
這些是我遵循的步驟: –
創建的UIViewController(XIB + 2班),與在MainWindow.xib中一個標籤鏈接,然後打開控制器剛剛創建,拖累在UITableView中,將其數據源和委託鏈接到文件所有者,在.m中添加表視圖的方法,並用這兩個委託UITableViewDataSource,UITableViewDelegate編輯.h。難道我做錯了什麼 ?該應用程序在這種情況下崩潰,但默認情況下scode給出的視圖中的相同內容不會產生問題。你知道它的生命週期嗎? –
爲什麼不只是將兩個UITableViewController子類添加到您的項目中而不是兩個UIViewControllers並手動添加所有內容。從你所說的一切,你仍然沒有在你的.h文件中繼承UITableViewController。 – Jamie