1

UIWebView を使用して Xcode のアプリに Web サイトをアタッチするにはどうすればよいですか? アシスタント エディターのコードのチャンクは次のとおりです。

#import <UIKit/UIKit.h>

@interface XYZAppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

@property (readonly, strong, nonatomic) NSManagedObjectContext *managedObjectContext;
@property (readonly, strong, nonatomic) NSManagedObjectModel *managedObjectModel;
@property (readonly, strong, nonatomic) NSPersistentStoreCoordinator    
*persistentStoreCoordinator;

- (void)saveContext;
- (NSURL *)applicationDocumentsDirectory;

@end

次のステップは何ですか?

4

1 に答える 1

0

http://conecode.com/news/2011/05/ios-tutorial-creating-a-web-view-uiwebview/ Google がこの質問に対する答えです。

于 2013-05-09T03:24:22.683 に答える