2010-04-04 41 views
5

tài liệu về SDK sdk có liên kết đến mã mẫu, nhưng bạn phải tải chúng xuống từ web. Có một gói bạn có thể tải xuống tất cả cùng một lúc từ quả táo không?tải xuống mã mẫu iphone từ apple

Ví dụ: đọc first iphone tutorial tại switchonthecode, từ mới đầu tiên tôi gặp phải là UIApplication. Có 5 mẫu trên web ...

+0

Nó không thể làm tổn thương để cho họ biết đó là cách tốt hơn để bạn lấy mã mẫu: http://developer.apple.com/bugreporter/ –

Trả lời

4

Tôi cũng là người mới bắt đầu và thấy khó chịu khi họ không có zip "tất cả các ví dụ". Họ cũng không làm cho nó dễ dàng để kéo chúng xuống tự động bởi vì họ sử dụng javascript để điền danh sách các ví dụ. May mắn là tôi đã có thể sử dụng Chrome để kiểm tra trang ví dụ và cung cấp cho tôi HTML "kết quả cuối cùng" hiệu quả và sử dụng nó để tạo tập lệnh này sẽ tải xuống và giải nén tất cả các ví dụ.

Hy vọng rằng chúng tôi là một cộng đồng có thể giữ danh sách này được duy trì, nhưng tính đến hôm nay, nó chứa tất cả các ví dụ.

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 

Trên một lưu ý liên quan, tôi thấy rằng ack là một cách cao hơn nhiều so với tìm kiếm các ví dụ hơn tìm/grep

Hy vọng điều này giúp những người khác càng nhiều vì nó đã giúp tôi.

+1

Tôi chỉ muốn táo lưu trữ mã mẫu trong github hoặc cái gì khác. –

+0

Điều đó và tôi muốn họ cấp phép cho họ theo Giấy phép nguồn công cộng của Apple. –

1

Nhờ David Blevins cho bản gốc được đăng ở trên. Tôi tự nhìn đối với bất kỳ bổ sung đầu tiên và grep'd kịch bản của David thêm nội dung mới hy vọng giữ kịch bản cập nhật:

#!/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 
1

Dành cho những người dùng bạn trên OSX (và không có wget/không muốn cài đặt ứng dụng này chỉ cho việc này). Ngoài ra, có vẻ như nó đã di chuyển từ http tới 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 
Các vấn đề liên quan