我通过将其保存在nsuserdefaults中,从另一个viewcontroller传递一个可变数组。然后我在新的viewcontroller中检索它,在其中nslogs就好了。当我的代码达到numberofrowsinsections时,我遇到了一个问题。好像我的tableview没有识别我的数组对象。感谢您提供任何帮助,因为我是编码新手。
#import "ViewController.h"
#import "RecordView.h"
#import "bookCellTableViewCell.h"
@interface ViewController ()
@end
@implementation ViewController
@synthesize arr;
- (void)viewDidLoad
{
[super viewDidLoad];
NSMutableArray *arr = [[NSMutableArray alloc]init];
arr = [[NSUserDefaults standardUserDefaults] valueForKey:@"projects"];
NSLog(@"arr%@", [arr description]);
#pragma mark - Table view data source
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [arr count];
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//static NSString *CellIdentifier = @"Cell";
bookCellTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"ToBook"];
if(cell != nil)
{
cell.songTitle.text = [arr objectAtIndex:indexPath.row];
testLabel.text = @"Hello";
}
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [bookView cellForRowAtIndexPath:indexPath];
}
@end
答案 0 :(得分:1)
这是一个范围问题:
您已在viewDidLoad
NSMutableArray *arr = [[NSMutableArray alloc]init];
这不正确,您的数据源应该是属性,或至少是类范围的变量。
您应该在viewDidLoad
初始化它,但在类级别声明它。
好像你已经有一个名为arr
的属性,一个聪明的编译器会警告你这是不明确的。
要解决此问题,只需删除该行的NSMutableArray *
部分,就像这样:
arr = [[NSMutableArray alloc]init];
你也在滥用NSUserdefault
它并不意味着在控制器之间传递数据,它更适合存储基本的用户设置值。
要传递数据,只需在显示ViewController
属性之前设置值。