Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 xcode4 中构建一个应用程序,它将在应用程序内部加载一个页面。我正在关注下面的视频
http://www.youtube.com/watch?v=yICZb91Poxs 任何帮助表示赞赏。
您创建一个项目并在您的 .h 中编写:
@property (weak, nonatomic) IBOutlet UIWebView *webV;
不要忘记@synthesize
@synthesize
在你的 .m 中:
[webV loadRequest:[NSRLRequest requestWithURL:[NSURL URLWithString:@"google.fr"]]];
您当然可以用另一个地址替换 google.fr。