iphone
文章平均质量分 84
iteye_1317
这个作者很懒,什么都没留下…
展开
-
iphone javascript call objectc method in uiwebview
android能很方便的使用jsinterface来实现使用javascript调用android的方法。但是iphone的uiwebview貌似没有这样的简便的方法。它的实现大致思想是:每一个js方法都是通过重新提交了一个http请求,请求的src使用特定的前缀,然后将方法名和参数以及回调地址编入src中,然后使用[code="objective-c"]- (BOOL)web...原创 2011-12-20 10:19:20 · 102 阅读 · 0 评论 -
显示PDF
UIWebView:方便快捷,因此也就效率慢。QLPreviewController和UIDocumentInteractionController:底层使用UIWebView,但是提供预览模式。CGPDFDocument:较底层方法,当然需要不少代码。[color=red]重要:官方demo->ZoomingPdfViewer(一切都在里面)[/color]资料:1、[url...原创 2011-01-05 20:00:53 · 87 阅读 · 0 评论 -
weak reference
资料[color=red]delegate:[/color][url]http://en.wikipedia.org/wiki/Delegation_pattern[/url]Objective-C 2.0// A custom view that scrolls its children.[code="java"]@interface TCScrollView : NSVie...原创 2011-01-22 10:42:11 · 130 阅读 · 0 评论 -
XCODE SCM
如何激活SCM的file status(原文地址:[url]http://yarshure.com/bbs/thread-7941-1-1.html[/url])鼠标右击 project上面的Groups & Files,会出现个菜单,将其中SCM打钩即可。1、不要将工程的Build目录放入仓库。Excluding the build Directory from Source C...原创 2011-02-10 11:20:44 · 127 阅读 · 0 评论 -
ios push notifiycation
昨天搞了许久的苹果的推送服务,看着文档不是很难。可是很少使用socket发送拼接字节一类的数据。后来找到了javapns,很方便。直接就推送成功了。本来是想用netty做的,但是没有成功,我觉得是bytes的发送格式不对,特别是字节数。主页:[url]http://code.google.com/p/javapns/[/url]使用的前提:[url]http://code.go...原创 2012-05-04 11:18:53 · 144 阅读 · 0 评论