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 を別のアドレスに置き換えることができます。