ボタンを作成し、Interface Builder のアクションに接続しました。ビューの表示からテーブル ビューの表示に切り替えるには、アクション メソッドで何をする必要がありますか?
これが私のコードの一部です:
// SwitchToTableViewController.h
#import <UIKit/UIKit.h>
@interface SwitchToTableViewController : UIViewController {
}
-(IBAction) switch : (id) sender;
@end
と
//SwitchToTableViewController.m
#import "SwitchToTableViewController.h"
#import "Table.h"
@implementation SwitchToTableViewController
-(IBAction) switch : (id) sender{
// what is i need to write here to switch to tableview
}
@end
と
//table.m
#import <UIKit/UIKit.h>
@interface Table : UITableViewController {
}
@end
と
//table.h
#import "Table.h"
@implementation Table
#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 2;
}
// 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;
}
@end