iphone 账号问题
摘要:1:99刀的为公司使用,可以自己定义一定数量的开发者子账号,不过只能有主账号来提交,发布等操作。 问题:如何利用多个开发子账号来进行测试2:如果发布一个应用程序到苹果商店,用户购买并且下载,苹果那边的分成是多少呢?3: 账号续费问题:帐号一般都是一年续费一次。续费一次大约需要个3到5天。所以在帐号失效前十天就要做准备。
阅读全文
posted @
2012-05-14 21:31
wtq
阅读(584)
推荐(0) 编辑
iphone three20详解 ppt
摘要:1:http://www.slideshare.net/iphonedevbr/three20
阅读全文
posted @
2011-12-23 11:18
wtq
阅读(414)
推荐(0) 编辑
iphone Three20如何添加到工程,以及如何添加删除图片的按钮。
摘要:最近由于项目需要,需要做一个相册查看器来查看项目截图的图片。于是发现Three20的功能很强大,有自带的相册功能,于是就将其引用到工程里头来。首先是要下载three20并安装到工程里头。 如果是想手动将three20添加到xcode4.2的话,可参照此链接:添加three20到xcode4.2教程 如果想通过指令来将three20添加到xcode的话,可参照此链接通过指令将three20添加到xcode教程 通过指令来将three20添加到xcdoe时,操作比较快速。但有几点需要注意。1.尽量让下载的three20 与工程处于同一个目录,这样在后续的设置中会比较方便。2.如果PROJECT..
阅读全文
posted @
2011-12-23 10:02
wtq
阅读(888)
推荐(0) 编辑
three20 URL-Based Navigation
摘要:1:原文摘自:http://three20.info/article/2010-10-06-URL-Based-Navigation#troubleshootingURL-Based NavigationNavigation in iPhone apps can be challenging - there is no single prescribed way to open a view and pass data into it. Most applications rely on each view having a particular API that the callers mu
阅读全文
posted @
2011-12-22 16:58
wtq
阅读(407)
推荐(0) 编辑
iphone three20 保存本地的图片
摘要:1:http://www.cnblogs.com/innhyul/archive/2010/11/13/1876583.html由于开发需要,准备做一个图片浏览器,用来显示已经下载存处在本地的图片.在网上搜索时发现了一个很好的库Three20, 320的简介参见这里.320分为Network,Style,Core,UI四部分,其中UI可以实现的部分效果可以参见下面这些图片,下载Three20需要安装git,具体配置方法参见这篇教程.320自带了一些sample,其中TTCatalog中有TTPhotoViewController的用法示例,不过所有示例中的图片都是远程网络地址,[[[MockP
阅读全文
posted @
2011-12-20 17:27
wtq
阅读(437)
推荐(0) 编辑
iphone 如何将three20添加到xcode4.2中去
摘要:1原文摘自:http://chepri.com/2011/04/22/visual-guide-manually-adding-three20-xcode-4-project/A Visual Guide to Manually Adding Three20 to your Xcode 4 ProjectPosted onApr 22, 2011Three20 is a modular open source Objective-C library used by numerous applications in the App Store, including well-known bran
阅读全文
posted @
2011-12-20 10:23
wtq
阅读(820)
推荐(0) 编辑
iphone 如何成功的把three20成功的添加到xcode中去。
摘要:1:原文摘自:http://three20.info/article/2010-10-06-Adding-Three20-To-Your-ProjectIntroductionBefore you begin using Three20 in your project, you should decide what directory layout works best for you.Recommended: Shared LayoutIn this layout, Three20 is shared between multiple projects. If you need to mak
阅读全文
posted @
2011-12-20 09:49
wtq
阅读(357)
推荐(0) 编辑
【转载】 xcode3换xcode4,three20项目问题解决办法
摘要:http://three20.info/article/2011-03-10-Xcode4-Support首先把Three20.xcodeProj编译一下,然后安装下面方法Xcode 4 Transition GuideApple is pushing for Xcode 4 to be the primary developmentenvironment and, as a result, many of us will transition from Xcode3.2 to Xcode 4 over the coming weeks. This guide has been puttoge
阅读全文
posted @
2011-12-20 09:04
wtq
阅读(362)
推荐(0) 编辑
iphone 如何通过指令来添加three20
摘要:1,原文摘自:http://blog.csdn.net/linhanmin/article/details/69072861.新建Three20文件夹2.用Terminal进入到新建的文件夹3.运行指令下载three20git clone https://github.com/facebook/three20.git4.在下载的时候在Three20文件下新建一个Three20Demo的项目5.下载完three20后,运行指令即可在新建项目里添加three20python three20/src/scripts/ttmodule.py -p ThreeDemo/ThreeDemo.xcodepr
阅读全文
posted @
2011-12-19 15:31
wtq
阅读(802)
推荐(0) 编辑
iphone three20 How to Start Three20 Photo Viewer in Thumbnail view?
摘要:1原文地址:http://stackoverflow.com/questions/7499591/how-to-start-three20-photo-viewer-in-thumbnail-viewYou should useTTThumbsViewControllerinstead ofTTPhotoViewController. There's a good example of it in three20 TTCategory sample app.TTThumbsViewControlleralso uses a photo source, so you won't
阅读全文
posted @
2011-12-17 16:32
wtq
阅读(289)
推荐(0) 编辑
three20 如何将three20中的demo添加到自己的应用程序中。
摘要:1:参考地址:http://stackoverflow.com/questions/8324516/three20-photo-viewer-customization- (void) viewDidLoad { [[TTURLRequestQueue mainQueue] setMaxContentLength:0]; TTNavigator *navigator = [TTNavigator navigator]; UIWindow *window = [UIApplication sharedApplication].keyWindow; navigator.window = w...
阅读全文
posted @
2011-12-17 15:57
wtq
阅读(388)
推荐(0) 编辑
iPhone Three20图片查看器
摘要:参考地址:http://www.raywenderlich.com/1430/how-to-use-the-three20-photo-viewer图片查看器demo1:
阅读全文
posted @
2011-12-17 13:41
wtq
阅读(265)
推荐(0) 编辑
iPhone Three20软件引擎之构建开发环境与HelloWorld
摘要:1:原文摘自:http://blog.csdn.net/xys289187120/article/details/7017432雨松MOMO原创文章如转载,请注明:转载自雨松MOMO的博客原文地址:http://blog.csdn.net/xys289187120/article/details/7017432 亲爱的朋友们,如果你现在在做IOS 软件开发,不妨来看看Three20这套框架。如果你对它还比较陌生?MOMO在这里告诉你它绝对是一个IOS 软件开发的利器,有了它绝对让你的软件事半功倍。three20框架的前身是facebook iPhone 客户端。 后来facebook将其开源了
阅读全文
posted @
2011-12-17 12:25
wtq
阅读(307)
推荐(0) 编辑
iphone Three20中TTNavigator用法总结
摘要:1:http://www.cocoachina.com/iphonedev/toolthain/2011/1027/3428.html简单映射:Three20中的TNavigator对于软件导航很有用,只需要维护一张map映射表就行了。就像url表示一个网页一样,Three20也采用了相同的方式,用url关联页面。大家可以参看TTNavigatorDemo中的源码:TTURLMap* map = navigator.URLMap;// Any URL that doesn't match will fall back on this one, and open in the web b
阅读全文
posted @
2011-12-17 12:17
wtq
阅读(426)
推荐(0) 编辑
iphone three20 How To Use the Three20 Photo Viewer
摘要:1,本页详情:http://www.raywenderlich.com/1430/how-to-use-the-three20-photo-viewer
阅读全文
posted @
2011-12-15 20:30
wtq
阅读(239)
推荐(0) 编辑