เราสามารถใช้ UIWebView ได้ครับ
ก็เริ่มจากสร้าง Project ใหม่ (ผมใช้ชื่อ OpenDoc)
นำ File .doc ที่ต้องการเปิดใส่ไว้ใน Project (ผมใช้ sample.doc)
ใน OpenDocAppDelegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions;
เพิ่ม Code สร้าง UIWebView
UIWebView *_webView = [[UIWebView alloc] initWithFrame:window.frame];
กำหนด Path ของ File ที่ต้องการเปิดและ Add Subview ลงใน Window
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"sample.doc" ofType:nil];
NSURL *url = [NSURL fileURLWithPath:filePath];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[_webView loadRequest:requestObj];
[window addSubview:_webView];
Build & Run
ไม่มีความคิดเห็น:
แสดงความคิดเห็น