我试图在我的第一个视图上显示一个列表,所以在 first.h 中添加了这个:
#import <UIKit/UIKit.h>
@interface argospineFirstViewController : UIViewController
<UITableViewDelegate,UITableViewDataSource>
{
NSMutableArray *Journals;
IBOutlet UITableView *myTableView;
}
@property (nonatomic,retain) NSMutableArray *Journals;
@property (nonatomic, retain) UITableView *myTableView;
@end
然后我在我的 first.m 上添加了这个:
@implementation argospineFirstViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
Journals=[NSMutableArray arrayWithObjects:@"journal1",@"journal2",nil];
}
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 2;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier];
}
cell.text=[Journals objectAtIndex:indexPath.row];
return cell;
}
我是新手,所以我真的不知道我必须建立什么样的联系,我也在使用一个故事板,在第一个视图上放置了一个 tableview。我有什么要添加到代表的吗?有什么帮助吗?感谢您的时间