出于某种原因,我不能 ctrl+拖动我的视图到 viewcontroller.h 来创建一个 IBOutlet。任何人都知道我可以做些什么来让它工作?
请看截图:http: //i.imgur.com/I25VCV1.png
这是我的 viewcontroller.m
#import "ViewController.h"
#import "SelectVideo1.h"
@interface ViewController ()
@end
@implementation ViewController
@synthesize littleView;
- (void)viewDidLoad
{
[super viewDidLoad];
NSURL *myURL = [NSURL URLWithString:@"http://yahoo.com"];
NSURLRequest *myRequest = [NSURLRequest requestWithURL:myURL];
[littleView loadRequest:myRequest];
}
@end