iOS アプリ開発情報
○準備 解説記事
http://kentaro-shimizu.com/lecture/iphone/step1.html
http://matome.naver.jp/odai/2133372910426362301
http://www.itmedia.co.jp/keywords/ios_objectivec.html
○実際
古いバージョンのiOSのサポート
XCODEのプロジェクトナビゲータからプロジェクトを選び、BuildSettingタブを選び、BASE SDKは最新。IOS Deployment Targetを古いバージョンのiOSを選ぶ。
http://d.hatena.ne.jp/KishikawaKatsumi/20100625/1277476249
○gitの管理に変更する
cat .gitignore
*.xcodeproj/*
!*.xcodeproj/project.pbxproj
!*.xcworkspace/contents.xcworkspacedata
.DS_Store
/Applications/Xcode.app/Contents/Developer/usr/bin/git init
/Applications/Xcode.app/Contents/Developer/usr/bin/git add .
/Applications/Xcode.app/Contents/Developer/usr/bin/git commit -m "Initial commit"
http://good-morning-call.com/2012/01/13/xcode4でアプリのバージョン管理/