在哪里可以找到iPad示例代码

时间:2022-04-29 15:09:03

I know the iPhone has a site with sample apps and code for the iPhone. Are there any resources out there for the iPad?

我知道iPhone有一个网站,上面有iPhone的示例应用程序和代码。iPad有什么资源吗?

I would like iPad specific examples like using split view, etc.

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

14 个解决方案

#1


22  

If you're a member of the Apple Developer Connection who's paid for the $99/year iPhone developer license, the iPhone Dev Center has everything you need for iPad support, including:

如果你是Apple Developer Connection的一员,并支付了99美元/年的iPhone开发者许可证,那么iPhone开发中心就有iPad支持所需的一切,包括:

When you get to the iPhone Dev Center, click "iPhone SDK 3.2 beta."

当你到达iPhone开发中心时,点击“iPhone SDK 3.2 beta”。

#2


22  

My BSD-licensed open source application Molecules has been updated with an iPad interface to make it a universal iPhone / iPad application, and the code for that is available for you to peruse. It uses a UISplitViewController to define its primary iPad interface, with UIPopoverControllers for additional toolbar actions.

我的bsd授权的开源应用分子已经更新了iPad界面,使它成为一个通用的iPhone / iPad应用程序,并且它的代码可供您仔细阅读。它使用一个UISplitViewController来定义它的主iPad接口,使用uipopovercontroller来执行其他工具栏操作。

#3


8  

iPad sample code

iPad的示例代码

iPad Programming Tutorial – Hello World++

iPad编程教程——Hello World++。

#4


6  

We just released the source code to our game, Tap Blaster HD. It's fairly simple, but seen quite a few downloads on the App Store. Could be a nice project to learn a bit from.

我们刚刚发布了游戏的源代码,点击Blaster HD。它非常简单,但是在应用商店上可以看到很多下载。这是一个值得学习的项目。

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

这里有一个链接,希望你觉得它有用。http://9magnets.com/project-tapblaster.html

#5


5  

There is a list of Apples iPad code samples at http://iphoneos-developer.blogspot.com/2010/05/ipad-sample-code.html

在http://iphoneos-developer.blogspot.com/2010/05/ipad- samplecode.html有一个苹果iPad代码样本列表

#6


2  

I don't know if you can find real ipad sample for now... There is no sample Apps with "split view controler" or the "Popover" component" like they recommand in the Guideline for iPad

我不知道你是否能找到真正的ipad样品。iPad指南中没有“分屏视图控制”或“弹出窗口”组件的示例应用

Nb. : In xCode, you can start a new project with "Split View-based Application" template, this is a minimalistic implementation of the Ipad split view.

Nb。:在xCode中,您可以使用“基于分割视图的应用程序”模板启动一个新项目,这是Ipad分割视图的一个极简实现。

#7


1  

iPad runs the iPhone OS, so iPhone sample apps are iPad sample apps.

iPad运行的是iPhone操作系统,所以iPhone样本应用就是iPad样本应用。

#8


1  

You can go to Xcode > Help > Developer Documentation to search for sample apps.

您可以访问Xcode >帮助>开发人员文档来搜索示例应用程序。

#9


1  

check the source code for iPad Split view Controller Tutorial at the following link.iPad Split View Navigation Controller Sample code

在下面的链接中查看iPad分屏视图控制器教程的源代码。iPad拆分视图导航控制器样本代码。

#10


1  

Here is an improved splitview controller, MGSplitViewController from Matt Gemmell.

这是一个改进的splitview控制器,来自Matt Gemmell的MGSplitViewController。

#11


1  

Few days ago I found a really nice book for iPad programming :

几天前,我找到一本很好的iPad编程书:

iPad Programming: A Quick-Start Guide for iPhone Developers

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

I took it as eBook, there are some really interesting advanced samples that will help you to create reach human experience application.

我把它当做电子书,有一些非常有趣的高级示例可以帮助您创建reach human experience应用程序。

Moreover, you can download all sample code explain on the book.

此外,您可以下载所有的示例代码说明。

For more information go here : http://pragprog.com/titles/sfipad/ipad-programming

更多信息请访问这里:http://pragprog.com/titles/sfipad/ipad编程

Unfortunately, this eBook is not free...

不幸的是,这本电子书不是免费的……

#12


0  

The Molecules sample code is a great sample because it covers writing a single app that works on both ipad and iphone interfaces, and uses ipad split view controller.

分子示例代码是一个很好的示例,因为它涵盖了编写在ipad和iphone界面上同时运行的应用程序,以及使用ipad分屏视图控制器。

#13


0  

you would google for Open sourced "iPad apps" or "universal apps". you will find some nice apps like wikihow, wordpress, molecules..etc.

你将谷歌用于开源的“iPad应用”或“通用应用”。你会发现一些不错的应用,比如wikihow, wordpress, molecular……

All the best.

愿一切都好!

#14


0  

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.

我在http://www.github.com上找到了很多很棒的iPhone和iPad代码,还有很多很好的可重用库,比如AFNetworking、NSLogger等等。

#1


22  

If you're a member of the Apple Developer Connection who's paid for the $99/year iPhone developer license, the iPhone Dev Center has everything you need for iPad support, including:

如果你是Apple Developer Connection的一员,并支付了99美元/年的iPhone开发者许可证,那么iPhone开发中心就有iPad支持所需的一切,包括:

When you get to the iPhone Dev Center, click "iPhone SDK 3.2 beta."

当你到达iPhone开发中心时,点击“iPhone SDK 3.2 beta”。

#2


22  

My BSD-licensed open source application Molecules has been updated with an iPad interface to make it a universal iPhone / iPad application, and the code for that is available for you to peruse. It uses a UISplitViewController to define its primary iPad interface, with UIPopoverControllers for additional toolbar actions.

我的bsd授权的开源应用分子已经更新了iPad界面,使它成为一个通用的iPhone / iPad应用程序,并且它的代码可供您仔细阅读。它使用一个UISplitViewController来定义它的主iPad接口,使用uipopovercontroller来执行其他工具栏操作。

#3


8  

iPad sample code

iPad的示例代码

iPad Programming Tutorial – Hello World++

iPad编程教程——Hello World++。

#4


6  

We just released the source code to our game, Tap Blaster HD. It's fairly simple, but seen quite a few downloads on the App Store. Could be a nice project to learn a bit from.

我们刚刚发布了游戏的源代码,点击Blaster HD。它非常简单,但是在应用商店上可以看到很多下载。这是一个值得学习的项目。

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

这里有一个链接,希望你觉得它有用。http://9magnets.com/project-tapblaster.html

#5


5  

There is a list of Apples iPad code samples at http://iphoneos-developer.blogspot.com/2010/05/ipad-sample-code.html

在http://iphoneos-developer.blogspot.com/2010/05/ipad- samplecode.html有一个苹果iPad代码样本列表

#6


2  

I don't know if you can find real ipad sample for now... There is no sample Apps with "split view controler" or the "Popover" component" like they recommand in the Guideline for iPad

我不知道你是否能找到真正的ipad样品。iPad指南中没有“分屏视图控制”或“弹出窗口”组件的示例应用

Nb. : In xCode, you can start a new project with "Split View-based Application" template, this is a minimalistic implementation of the Ipad split view.

Nb。:在xCode中,您可以使用“基于分割视图的应用程序”模板启动一个新项目,这是Ipad分割视图的一个极简实现。

#7


1  

iPad runs the iPhone OS, so iPhone sample apps are iPad sample apps.

iPad运行的是iPhone操作系统,所以iPhone样本应用就是iPad样本应用。

#8


1  

You can go to Xcode > Help > Developer Documentation to search for sample apps.

您可以访问Xcode >帮助>开发人员文档来搜索示例应用程序。

#9


1  

check the source code for iPad Split view Controller Tutorial at the following link.iPad Split View Navigation Controller Sample code

在下面的链接中查看iPad分屏视图控制器教程的源代码。iPad拆分视图导航控制器样本代码。

#10


1  

Here is an improved splitview controller, MGSplitViewController from Matt Gemmell.

这是一个改进的splitview控制器,来自Matt Gemmell的MGSplitViewController。

#11


1  

Few days ago I found a really nice book for iPad programming :

几天前,我找到一本很好的iPad编程书:

iPad Programming: A Quick-Start Guide for iPhone Developers

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

I took it as eBook, there are some really interesting advanced samples that will help you to create reach human experience application.

我把它当做电子书,有一些非常有趣的高级示例可以帮助您创建reach human experience应用程序。

Moreover, you can download all sample code explain on the book.

此外,您可以下载所有的示例代码说明。

For more information go here : http://pragprog.com/titles/sfipad/ipad-programming

更多信息请访问这里:http://pragprog.com/titles/sfipad/ipad编程

Unfortunately, this eBook is not free...

不幸的是,这本电子书不是免费的……

#12


0  

The Molecules sample code is a great sample because it covers writing a single app that works on both ipad and iphone interfaces, and uses ipad split view controller.

分子示例代码是一个很好的示例,因为它涵盖了编写在ipad和iphone界面上同时运行的应用程序,以及使用ipad分屏视图控制器。

#13


0  

you would google for Open sourced "iPad apps" or "universal apps". you will find some nice apps like wikihow, wordpress, molecules..etc.

你将谷歌用于开源的“iPad应用”或“通用应用”。你会发现一些不错的应用,比如wikihow, wordpress, molecular……

All the best.

愿一切都好!

#14


0  

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.

我在http://www.github.com上找到了很多很棒的iPhone和iPad代码,还有很多很好的可重用库,比如AFNetworking、NSLogger等等。