2012年12月– date –
-
Product
SmartScope2.0 ユーザーマニュアル (Ja)
はじめに SmartScopeをご購入いただき、ありがとうございます。 SmartScopeは初めての方でも、直感的に操作できるよう設計されています。 本マニュアルは、各種ボタンの機能をあらかじめご理解いただくことで、アプリを快適に利用するためのお手伝いをさせ... -
Product
SmartScope2.0 User’s Manual (EN)
Introduction Thank you for Purchase of SmartScope. Even beginners, SmartScope has been designed to be intuitive. By understanding the behavior of the various buttons in advance, in this manual, we will help you to take full advantage of ... -
Note
Objective-C:addSubViewしたSubViewの順番を変更する
addSubView した SubView の重なり順を変更するときのメモ。 SubViewの順番を変更する self.viewにsubControllerを加え、self.viewの最前面へ [code] [self.view addSubview:subController]; [self.view bringSubviewToFront:subController.view]; [/code]... -
Note
Xcode:プロビジョニングプロファイル修正→ビルドは成功するのに実機に転送されない
iOS Provisioning Portalでプロビジョニングプロファイルを一度削除・再作成すると、以前は実機での動作確認出来ていたアプリが転送できなくなった。そのときの解決方法をメモ。 アプリが実機に転送されなくなった場合の解決方法 厳密に言えば、アプリのデ... -
Note
Objective-C:NSNotificationCenterでアプリ起動・終了時にメソッドを呼び出す
アプリ終了時に実行したい処理がある場合は、NSNotificationCenter を使う。 NSNotificationCenterのサンプルコード アプリが終了する直前に myFunction を実行 [code] - (void)viewDidLoad { [[NSNotificationCenter defaultCenter] addObserver:self sel... -
Note
Objective-C:テキストをクリップボードへコピーする
ユーザーが入力したテキストをクリップボードへコピーする方法をメモ。 テキストをクリップボードへコピーする UIPasteboard オブジェクトにテキストをペーストする。 [code] UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; [board setVal... -
Note
Objective-C:UIAlertViewの使い方
リリースにも、開発時のデバッグにも使える UIAlertView の使い方。 UIAlertViewの使い方 インスタンス生成時に初期設定を行う [code] UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"タイトル" message:@"メッセージ" delegate:self cancel... -
Note
Objective-C:ブロックによるアニメーション(iOS4.0以降に対応)
iOSのアプリを制作する上で、最も重要かもしれない要素であるアニメーション。ブロックを使えばアニメーションのソースコードも分かりやすくまとめることが出来る。 ブロックを使用したアニメーション 単独処理のサンプル [code] [UIView animateWithDurat...
1
