日々精進

新しく学んだことを書き留めていきます

2014-11-18から1日間の記事一覧

UISearchBarの中のTextFieldの背景色を変更する

iOS

UISearchBarのsearchBarStyleをminimalにする。 UISearchBarを持つViewControllerで以下を実装する - (void)viewDidLoad { [super viewDidLoad]; UITextField *textField = [self findTextFieldOfSearchBar:self.searchBar]; // 背景色を白に変更 [textField…

iOS8でUITableViewCellのReorderControlが消える

iOS

一度画面外にいって再度表示されたCellのReorderControl(並べ替えマーク)が消えるという不具合。 これはiOS8のバグらしい。Cellのサブクラスで以下を実装すれば直る。 - (void)prepareForReuse { [super prepareForReuse]; [self setEditing:NO animated:N…