我正在尝试使用视图控制器制作一个窗口(我猜这就像.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