-3

我正在尝试使用视图控制器制作一个窗口(我猜这就像.Net中的GroupBox(如果我错了,请纠正我..))并且我试图在模拟器上启动应用程序并且它引发了异常。我正在使用故事板。

我的代码是:

//
//  ViewController.m
//  100FMPlayer
//
//  Created by Guy Kaplan on 7/14/13.
//  Copyright (c) 2013 Guy Kaplan. All rights reserved.
//
#import "Song.h"
#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

-(id)init
{
    self = [super init];
    self.arSongsCollection = [[NSMutableArray alloc] init];

    _tableView.delegate = self;
    _tableView.dataSource = self.arSongsCollection;
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    [_arSongsCollection addObject:[[Song alloc] initWithTitle:@"Song" andArtist:@"Artist" andURL:[NSURL URLWithString:@"http://songurl.com/song.mp3"]]];

}

@end
4

1 回答 1

2

这条线会给你带来麻烦:

   _tableView.dataSource = self.arSongsCollection;

数据源更像是一个委托。它是一个协议,应该是一个可以处理方法回调的对象(如您的 viewContoller)。

你很可能想要设置

   _tableView.dataSource = self;

我认为你应该玩一些苹果的示例项目。他们帮助我进入 iOS 领域。

于 2013-10-16T19:03:05.737 回答