2011-11-30から1日間の記事一覧

UITextFieldとUITextViewの違い

UITextField 参考:UITextField - iPhoneアプリ開発の虎の巻 UITextView 参考: UITextView - iPhoneアプリ開発の虎の巻 iPhone UITextView 改行ボタンを完了ボタンに - 袖触れ合うも多少の縁 オデの日記@WEB系: UIView UILayout UITextViewを角丸にする 角…

インタフェースビルダーで作った画面をプログラムでいじるときの罠

インタフェースビルダーで画面を作っておきながら、 自分でプログラムで、ナビゲーションバーを書くときには、 インタフェースビルダー側でも、Top Bar設定項目に「Navigation Bar」などから ちょうどいい大きさのものを設定しておかないと、 画面全体の高さ…

iPhoneでチャックボックスを実装したいとき

- (void)tableView:(UITableView *)_tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { switch (indexPath.section) { case 0:{ UITableViewCell *cell = [_tableView cellForRowAtIndexPath:indexPath]; //セルにチェックが付いている場合はチ…

UIVIewControllerの背景画像の設定方法

UIImageView *backgroundImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Blah.png"]]; [self.view addSubview:backgroundImage]; [self.view sendSubviewToBack:backgroundImage]; [backgroundImage release]; 参考: iphone - UIViewCo…