0

出于某种原因,我不能 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
4

1 回答 1

0

右键单击您的 Web 视图,查看是否有任何连接。有时它会发生,因为你已经有了一些联系并最终再次给予。

于 2013-10-23T09:06:58.387 回答