I turned in my other app "Typing Sebastian" with minimum requirement of iOS 4.2. I didn't really know where I set it or I didn't pay too much attention until some customer wrote a review saying something like, "I'd give the older version 5 stars, but the author made it so it's only for iOS 4.2 and up".
So I had to research and learn where to do it. Yet another win with Google search. Just go to project settings, type in "deployment" in the search field. That was set to 4.2 with the newest SDK I have. So I set it to 3.1.2, waiting for review now.
自分のもう一つのアプリ、「Typing Sebastian」を最近アップデートしたらカスタマーレビューで5星をあげたいけどiOS 4.2以上じゃないとできないので4星にしたという。あらら、と思って調べたらそこに全然気を使ってなかった。もともと3.1.2で出してたけど新しいSDKはそれを勝手に一番新しいものにしてたという始末。
推奨を設定するにはProject settingsメニューにいって、deploymentを3.1.2に設定しなおした。アプリをビルドし、またアプル審査へ。
Showing posts with label tips. Show all posts
Showing posts with label tips. Show all posts
12/13/2010
Setting minimum iOS requirement
8/03/2009
Xcode tips #2
I posted before that command + double clicking on a word shows the header files, but you can also do this on your own code also. It is extremely handy if you want to quickly jump to certain method you wrote just by holding down command and double clicking on it.
If you Option click on an Apple's API, it brings up the Documentation and searches it, saving you time to actually bringing up the Documentation and typing what you want to search for.
以前にコマンド+ダブルクリックでヘッダーファイルを開くというティップを紹介したけど、同じ動作を自分のコードにやると元のコードへ飛ぶ。めちゃくちゃ便利。ちなみにオプションクリックはドキュメンテーションを開いてサーチという一石二鳥なショートカット。いつもわざわざドキュメンテーション開いて検索ボックスにタイプしてたのがオプションダブルクリックでできるようになった。
If you Option click on an Apple's API, it brings up the Documentation and searches it, saving you time to actually bringing up the Documentation and typing what you want to search for.
以前にコマンド+ダブルクリックでヘッダーファイルを開くというティップを紹介したけど、同じ動作を自分のコードにやると元のコードへ飛ぶ。めちゃくちゃ便利。ちなみにオプションクリックはドキュメンテーションを開いてサーチという一石二鳥なショートカット。いつもわざわざドキュメンテーション開いて検索ボックスにタイプしてたのがオプションダブルクリックでできるようになった。
6/21/2009
#pragma mark

This little tip will help you organize your code. It creates sections with bold fonts in your method pop ups like in the screenshot.
コードを整理するのに役に立つティップです。スクリーンショット参照。
#pragma mark Whatever you want to say
6/08/2009
Xcode tips
Command + double clicking on it shows the header file.
コマンド+ダブルクリックでヘダーファイルを表示。
コマンド+ダブルクリックでヘダーファイルを表示。
6/06/2009
Level up, player death
Player actually gains level, and they now die. I had a hard time adjusting the size of the xp bar as they are collected. Be careful of the UIIView's clipsToBounds, they should be set to YES if you want to resize its bounds and frame. Wasted about 1 hour why my view wasn't changing its size.
レベルアップ設置とプレイヤーのHPが0になったときに死んで店に0階へ飛ばされるようにした。経験値バーの幅を設定するときにUIViewのプロパティであるclipsToBoundsがNOになってたため幅がどうしても100%のままだった。1時間無駄にしてもうた。みなさん気をつけてください。
レベルアップ設置とプレイヤーのHPが0になったときに死んで店に0階へ飛ばされるようにした。経験値バーの幅を設定するときにUIViewのプロパティであるclipsToBoundsがNOになってたため幅がどうしても100%のままだった。1時間無駄にしてもうた。みなさん気をつけてください。
6/05/2009
Xcode keyboard shortcut tips
Here are three simple Xcode keyboard short cut tips.
Xcodeの便利なショートカットを連載。
1) The Escape key for bringing up suggestion commands for specific class.
ESCキーでクラスのメソッドやプロパティのリストを表示。

2) Command + Shift + D lets you quickly view the header file of highlighted class.
コマンド+シフト+Dで選択したヘダーファイルを表示。

3) Command + Option + Shift + ? opens up the Documentation. This Documentation gets very very handy.
コマンド+オプション+シフト+?でドキュメンテーションを開く。
Xcodeの便利なショートカットを連載。
1) The Escape key for bringing up suggestion commands for specific class.
ESCキーでクラスのメソッドやプロパティのリストを表示。

2) Command + Shift + D lets you quickly view the header file of highlighted class.
コマンド+シフト+Dで選択したヘダーファイルを表示。

3) Command + Option + Shift + ? opens up the Documentation. This Documentation gets very very handy.
コマンド+オプション+シフト+?でドキュメンテーションを開く。
Subscribe to:
Posts (Atom)