摘要: //加载本地pdf到webview-(void)loadDocument:(NSString*)documentName inView:(UIWebView*)webView{ NSString *path = [[NSBundle mainBundle] pathForResource:documentName ofType:nil]; NSURL *url = [NSURL fileURLWithPath:path]; NSURLRequest *request = [NSURLRequest requestWithURL:url]; [webView loadRequest:re... 阅读全文
posted @ 2012-02-29 17:10 凡娃软件 阅读(342) 评论(0) 推荐(0) 编辑
摘要: //判断是ipad还是iphone-(BOOL)IsIPhone{ BOOL isPhone = NO; if(UI_USER_INTERFACE_IDIOM()) isPhone = (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone); return isPhone;} 阅读全文
posted @ 2012-02-29 13:55 凡娃软件 阅读(393) 评论(0) 推荐(0) 编辑