English 中文(简体)
我该去哪里找iPad示例代码 [已关闭]。
原标题:Where can I find iPad Sample Code [closed]

要求我们推荐或寻找工具、库或喜爱的离线资源的问题,因为它们往往会吸引到有意见的回答和垃圾邮件,所以在Stack Overflow上属于不合适的话题。相反,请描述问题及到目前为止所做的工作。

Closed 9 years ago.

我知道iPhone有一个展示应用程序和代码的网站。那么iPad有没有类似的资源呢?

我想要iPad特定的示例,比如使用分屏视图等。

最佳回答

如果您是已经支付了每年99美元的iPhone开发者许可证费用的苹果开发者连接会员,iPhone Dev Center提供了所有您需要的iPad支持。

当您到达iPhone Dev Center时,请单击“iPhone SDK 3.2 beta”。

问题回答

我使用BSD许可的开源应用程序 Molecules 已经更新为 iPad 版本,成为了通用的 iPhone / iPad 应用程序,相关代码已经可供查阅。它使用 UISplitViewController 定义其主要的 iPad 界面,并使用 UIPopoverControllers 支持额外的工具栏操作。

iPad样本代码

iPad编程教程-Hello World ++

我们刚刚发布了我们的游戏Tap Blaster HD的源代码。这个游戏相当简单,但是在应用商店上已经有相当多的下载量。这可能是一个可以学习很多东西的好项目。

Here s a link, hope you find it useful. http://9magnets.com/project-tapblaster.html

这是一个Apple iPad代码示例列表,网址是http://iphoneos-developer.blogspot.com/2010/05/ipad-sample-code.html

我不知道你现在是否能够找到真正的一篮子样本。 没有“split view controler”或“Popover”部分的样本应用,如同在iPads准则中重新表述的那样。

注意:在xCode中,您可以使用“分屏视图应用程序”模板启动新项目,这是iPad分屏视图的最简实现。

iPad 运行 iPhone OS,所以 iPhone 示例应用程序也是 iPad 示例应用程序。

您可以前往 Xcode > 帮助 > 开发者文档查找示例应用。

http://rapidcomm.com/files/378504579/iPad SplitView_20100421_1053_.zip”rel=“nofollow noretinger”i。 Pad Split View Navigation Chief Sample Code

几天前,我发现了一本真正不错的iPad编程书籍:

iPad编程:iPhone开发者的快速入门指南

我把它作为电子书使用,里面有一些非常有趣的高级样例,可以帮助您创建出能够达到丰富人类体验的应用程序。

此外,您可以下载书中所述的所有示例代码。

获取更多信息,请点击这里:http://pragprog.com/titles/sfipad/ipad-programming

很遗憾,这本电子书不免费。

分子示例代码是一个很好的示例,因为它涉及编写适用于iPad和iPhone界面的单个应用程序,并使用iPad分割视图控制器。

你可以谷歌搜索开源的“iPad应用”或“通用应用程序”。你会发现一些不错的应用程序,如wikihow,WordPress,molecules等等。

一切顺利。

I have found lots of great iPhone & iPad code on http://www.github.com Lots of nice reusable libraries too like AFNetworking, NSLogger, and more.





相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签