我是iOS新手,只是想在UITableView
中显示数据。我基本上有一个关于作者的项目。我想显示作者姓名等。所以我有一个作者模型和AuthorsViewController
这是UITableView
等数据源和委托。我正在使用storyboard(MainStoryboard
)tableview并设法将其连接到“Identity Inspector”中的AuthorsViewController
。
故事板的图片如果有帮助,谢谢:
这里,首先是模型:Author.h
#import <Foundation/Foundation.h>
@interface Author : NSObject
@property (nonatomic, strong) NSString *name;
@property (nonatomic, strong) NSString *book;
@property (nonatomic) int year;
@end
Author.m
#import "Author.h"
@implementation Author
@end
这是AuthorsViewController.h
@interface AuthorViewController : UITableViewController
<UITableViewDataSource, UITableViewDelegate>
@end
和AuthorsViewController.m
#import "AuthorViewController.h"
@interface AuthorViewController ()
@property (nonatomic, strong) NSMutableArray *authors;
@end
@implementation AuthorViewController
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
_authors = [[NSMutableArray alloc] init];
Author *auth = [[Author alloc] init];
[auth setName:@"David Powers"];
[auth setBook:@"PHP Solutions"];
[auth setYear:2010];
[_authors addObject:auth];
auth = [[Author alloc] init];
[auth setName:@"Lisa Snyder"];
[auth setBook:@"PHP security"];
[auth setYear:2011];
[_authors addObject:auth];
auth = [[Author alloc] init];
[auth setName:@"Rachel Andrew"];
[auth setBook:@"CSS3 Tips, Tricks and Hacks"];
[auth setYear:2012];
[_authors addObject: auth];
}
#pragma mark - 表视图数据源
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [_authors count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"AuthorCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
if (cell != nil)
{
cell = [[UITableViewCell alloc]
initWithStyle: UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
Author *currentAuthor = [_authors objectAtIndex:[indexPath row]];
[[cell textLabel] setText: [currentAuthor name]];
NSLog(@"%@", [currentAuthor name]);
return cell;
}
@end
答案 0 :(得分:2)
由于您使用故事板中的单元格创建了表格视图,因此根本不需要if(cell == nil)子句。您还需要将[self.tableView reloadData]作为viewDidLoad中的最后一行。