Home > Archives > 2010年12月 Archive

2010年12月 Archive

iPad ModalView表示の時、キーボードが隠れない

  • Posted by: goron
  • 2010年12月16日 16:27
  • iPad

iPadのMordalViewを表示中に、[UITextField resignFirstResponder]でキーボードが隠れなくなる話。
どうも、modalPresentationStyleをUIModalPresentationFormSheetに設定した場合、キーボードを表示すると、起こるらしい。


UIViewController *b = [[UIViewController alloc] init];
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:b];
navigationController.modalPresentationStyle = UIModalPresentationFormSheet;
navigationController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:navigationController animated:YES];
[navigationController release];
[b release];

この状態で、UITextFieldへbecomeFirstResponderしてキーボードを表示する。
キー入力終了後に[UITextField resignFirstResponder]してもキーボードは隠れない。
MordalViewを閉じる時にはキーボードは一緒に隠れる。
これはバグではないらしい。
http://stackoverflow.com/questions/3372333/


で、下記を参考にしたら、対処できました。(でもリジェクト)
追記 2011.1.24 以下はPrivate APIなのでリジェクトになるようです。
スミマセン。。。コメントありがとうございました。

iOS4.3では
[UIViewController disablesAutomaticKeyboardDismissal]
というメソッドが追加されるようです。さて、それ以下のOSにはどう対処しようかしら?

[myTextField resignFirstResponder];
@try
{
    Class UIKeyboardImpl = NSClassFromString(@"UIKeyboardImpl");
    id activeInstance = [UIKeyboardImpl performSelector:@selector(activeInstance)];
    [activeInstance performSelector:@selector(dismissKeyboard)];
}
@catch (NSException *exception)
{
    NSLog(@"%@", exception);
}
http://stackoverflow.com/questions/2762251/how-to-hide-the-ipad-keyboard-from-a-modal-view-controller



iPhone等で再生するm4vへのファイル変換

  • Posted by: goron
  • 2010年12月14日 14:01
  • iPad | iPhone

アプリのスプラッシュムービーにm4vファイルを使いたいことがあると思います。
変換面倒くさいなあと思っていたのですが、iTunes使えば簡単でしたね。

QTやAviなど動画ファイルを用意します。
動画ファイルをiTunesへドロップ。
ムービー一覧を開いて、変換したいファイルを選択。
メニューの「詳細」から「iPod/iPhoneバージョン作成」または「iPad/AppleTVバージョン作成」
ムービー一覧に変換されたファイルが現れるので、右クリックで「Finderで表示」

でm4vファイルがゲットできます。

携帯変換君とか使う必要は全然なかったですね。。


Index of all entries

Home > Archives > 2010年12月 Archive

Profile

iPhone/iPad開発 web制作:平野百貨店
iPhone/iPad開発・web制作・映像制作をしている平野百貨店の店長個人の覚書です。
ご意見・ご感想などお問合せはコチラからどうぞ。

※最近ツッコミをもらうので一応書いておきます。ブログのタイトル「袖触れ合うも多少の縁」はわざとです。正確には「袖振り合うも多生の縁」が正解です。

Search
iPhone Apps






RSS
リンク
のこぎりそうの日記

Return to page top