【问题标题】:download iphone sample code from apple [closed]从苹果下载 iphone 示例代码 [关闭]
【发布时间】:2011-02-04 07:08:33
【问题描述】:

iphone sdk 文档有示例代码的链接,但您必须从网络上单独下载它们。有没有可以从苹果一次下载的捆绑包?

例如,在switchonthecode阅读first iphone tutorial,我遇到的第一个新词是UIApplication。网上有5个样本...

【问题讨论】:

标签: iphone ios objective-c ipad


【解决方案1】:

我也是一个初学者,发现没有“所有示例”压缩包很烦人。它们也不容易自动拉下它们,因为它们使用 javascript 来填充示例列表。

幸运的是,我能够使用 Chrome 检查示例页面并为我提供有效的“最终结果”HTML,并使用它来创建将下载和解压缩所有示例的脚本。

希望我们作为一个社区可以保持此列表,但截至今天,它确实包含所有示例。

ios-examples.sh

#!/bin/bash

while read n; do
    wget "http://developer.apple.com/library/ios/samplecode/$n/$n.zip" &&
    unzip "$n.zip" &&
    rm "$n.zip"
done <<EOF
AQOfflineRenderTest
AccelerometerGraph
Accessory
AddMusic
AdvancedTableViewCells
AdvancedURLConnections
AlternateViews
AppPrefs
BatteryStatus
BonjourWeb
Breadcrumb
BubbleLevel
CopyPasteTile
CoreDataBooks
CryptoExercise
CurrentAddress
DateCell
DateSectionTitles
DocInteraction
DrillDownSave
EADemo
FastEnumerationSample
Formulaic
GKRocket
GKTank
GKTapper
GLES2Sample
GLGravity
GLImageProcessing
GLPaint
GLSprite
GLTextureAtlas
GenericKeychain
HazardMap
HeaderFooter
HeadsUpUI
HelloWorld_iPhone
Icons
InternationalMountains
KMLViewer
KeyboardAccessory
LaunchMe
LazyTableImages
ListAdder
LocateMe
Locations
MailComposer
MapCallouts
MessageComposer
Metronome
MixerHost
MoveMe
MoviePlayer_iPhone
MultipleDetailViews
MusicCube
NavBar
PVRTextureLoader
PageControl
PhotoLocations
PhotoPicker
Popovers
PrintPhoto
PrintWebView
QuartzDemo
QuickContacts
Reachability
Reflection
Scrolling
SeismicXML
SimpleDrillDown
SimpleEKDemo
SimpleFTPSample
SimpleGestureRecognizers
SimpleNetworkStreams
SimpleURLConnections
SimpleUndo
SpeakHere
SysSound
TableSearch
TableViewSuite
TableViewUpdates
TaggedLocations
Teslameter
TheElements
ToolbarSearch
TopPaid
TopSongs
TouchCells
Touches
Trailers
TransWeb
UICatalog
URLCache
ViewTransitions
WeatherMap
WhichWayIsUp
WiTap
WorldCities
ZoomingPDFViewer
aurioTouch
avTouch
iAdSuite
iPhoneCoreDataRecipes
iPhoneExtAudioFileConvertTest
iPhoneMixerEQGraphTest
iPhoneMultichannelMixerTest
iPhoneUnitTests
oalTouch
EOF

在相关说明中,我发现 ack 是一种比 find/grep 搜索示例的更好方法

希望这对其他人的帮助和对我的帮助一样多。

【讨论】:

  • 我只希望苹果将示例代码托管在 github 或其他地方。
  • 那,我希望他们根据 Apple 公共源代码许可证授权它们。
【解决方案2】:

http://www.jerrybeers.com/index.php/2011/06/18/copying-xcode-samples/ 展示了如何从您机器上现有的 xcode 安装中获取所有示例。很有用!

【讨论】:

    【解决方案3】:

    感谢 David Blevins 在上面发布的原始内容。我手动查找了任何第一次添加的内容并 grep'd David 的脚本,添加了新内容,希望使脚本保持最新:

        #!/bin/bash
    
    # Found here:
    # http://stackoverflow.com/questions/2576256/download-iphone-sample-code-from-apple
    
    while read n; do
        wget "http://developer.apple.com/library/ios/samplecode/$n/$n.zip" &&
        unzip "$n.zip" &&
        rm "$n.zip"
    done <<EOF
    AQOfflineRenderTest
    AccelerometerGraph
    Accessory
    AddMusic
    AdvancedTableViewCells
    AdvancedURLConnections
    AlternateViews
    AppPrefs
    BatteryStatus
    BonjourWeb
    Breadcrumb
    BubbleLevel
    CopyPasteTile
    CoreDataBooks
    CoreTelephonyDemo
    CryptoExercise
    CurrentAddress
    DateCell
    DateSectionTitles
    DocInteraction
    DrillDownSave
    EADemo
    ExternalDisplay
    FastEnumerationSample
    Formulaic
    GKAuthentication
    GKRocket
    GKTank
    GKTapper
    GLES2Sample
    GLGravity
    GLImageProcessing
    GLPaint
    GLSprite
    GLTextureAtlas
    GenericKeychain
    HazardMap
    HeaderFooter
    HeadsUpUI
    HelloWorld_iPhone
    Icons
    InternationalMountains
    KMLViewer
    KeyboardAccessory
    LaunchMe
    LazyTableImages
    ListAdder
    LocateMe
    Locations
    MailComposer
    MapCallouts
    MessageComposer
    Metronome
    MixerHost
    MoveMe
    MoviePlayer_iPhone
    MultipleDetailViews
    MusicCube
    MVCNetworking
    NavBar
    PVRTextureLoader
    PageControl
    PhotoLocations
    PhotoPicker
    Popovers
    PrintPhoto
    PrintWebView
    QuartzDemo
    QuickContacts
    Reachability
    Reflection
    Scrolling
    SeismicXML
    SimpleDrillDown
    SimpleEKDemo
    SimpleFTPSample
    SimpleGestureRecognizers
    SimpleNetworkStreams
    SimpleTextInput
    SimpleURLConnections
    SimpleUndo
    SpeakHere
    SysSound
    TableSearch
    TableViewSuite
    TableViewUpdates
    TaggedLocations
    Teslameter
    TheElements
    ThreadedCoreData
    ToolbarSearch
    TopPaid
    TopSongs
    TouchCells
    Touches
    Trailers
    TransWeb
    UICatalog
    URLCache
    ViewTransitions
    WeatherMap
    WhichWayIsUp
    WiTap
    WorldCities
    ZoomingPDFViewer
    aurioTouch
    avTouch
    iAdSuite
    iPhoneACFileConvertTest
    iPhoneCoreDataRecipes
    iPhoneExtAudioFileConvertTest
    iPhoneMixerEQGraphTest
    iPhoneMultichannelMixerTest
    iPhoneUnitTests
    oalTouch
    EOF
    

    【讨论】:

      【解决方案4】:

      对于那些使用 OSX 的人(并且没有 wget/不想为此安装它)。另外,它看起来已经从 http 转移到 https:

      while read n; do
      curl -o $n.zip https://developer.apple.com/library/ios/samplecode/$n/$n.zip
      unzip $n.zip &&
      rm $n.zip
      done <<EOF
      AQOfflineRenderTest
      AccelerometerGraph
      Accessory
      AddMusic
      AdvancedTableViewCells
      AdvancedURLConnections
      AlternateViews
      AppPrefs
      BatteryStatus
      BonjourWeb
      Breadcrumb
      BubbleLevel
      CopyPasteTile
      CoreDataBooks
      CoreTelephonyDemo
      CryptoExercise
      CurrentAddress
      DateCell
      DateSectionTitles
      DocInteraction
      DrillDownSave
      EADemo
      ExternalDisplay
      FastEnumerationSample
      Formulaic
      GKAuthentication
      GKRocket
      GKTank
      GKTapper
      GLES2Sample
      GLGravity
      GLImageProcessing
      GLPaint
      GLSprite
      GLTextureAtlas
      GenericKeychain
      HazardMap
      HeaderFooter
      HeadsUpUI
      HelloWorld_iPhone
      Icons
      InternationalMountains
      KMLViewer
      KeyboardAccessory
      LaunchMe
      LazyTableImages
      ListAdder
      LocateMe
      Locations
      MailComposer
      MapCallouts
      MessageComposer
      Metronome
      MixerHost
      MoveMe
      MoviePlayer_iPhone
      MultipleDetailViews
      MusicCube
      MVCNetworking
      NavBar
      PVRTextureLoader
      PageControl
      PhotoLocations
      PhotoPicker
      Popovers
      PrintPhoto
      PrintWebView
      QuartzDemo
      QuickContacts
      Reachability
      Reflection
      Scrolling
      SeismicXML
      SimpleDrillDown
      SimpleEKDemo
      SimpleFTPSample
      SimpleGestureRecognizers
      SimpleNetworkStreams
      SimpleTextInput
      SimpleURLConnections
      SimpleUndo
      SpeakHere
      SysSound
      TableSearch
      TableViewSuite
      TableViewUpdates
      TaggedLocations
      Teslameter
      TheElements
      ThreadedCoreData
      ToolbarSearch
      TopPaid
      TopSongs
      TouchCells
      Touches
      Trailers
      TransWeb
      UICatalog
      URLCache
      ViewTransitions
      WeatherMap
      WhichWayIsUp
      WiTap
      WorldCities
      ZoomingPDFViewer
      aurioTouch
      avTouch
      iAdSuite
      iPhoneACFileConvertTest
      iPhoneCoreDataRecipes
      iPhoneExtAudioFileConvertTest
      iPhoneMixerEQGraphTest
      iPhoneMultichannelMixerTest
      iPhoneUnitTests
      oalTouch
      EOF
      

      【讨论】:

        猜你喜欢
        • 2012-10-21
        • 2011-03-15
        • 1970-01-01
        • 2010-11-21
        • 1970-01-01
        • 1970-01-01
        • 2010-12-04
        • 2011-03-04
        • 1970-01-01
        相关资源
        最近更新 更多