2013-11-01から1ヶ月間の記事一覧

コンビニエンスコンストラクタ

よくあるobjectWithxxのようなやつ。クラスメソッドで定義して +(id)objectWithxx:(int)num{ return [[[Object alloc] initWithxx] autorelease]; } -(id)initWithxx:(int)num{ [super init]; self.num = num; return self; }Object *object = [Object objec…

Could not load NIB in bundle: 'NSBundle'

MyUITableViewController *myUITableViewController = [[MyUITableViewController alloc] initWithNibName:@"MyUITableViewController" bundle:nil];とした時、Could not load NIB in bundle: 'NSBundle'とエラー。どうやら、対応するxibが存在しないと出る…

スマフォの入力キーボード指定

ガラケーのistyleのようなの。iphoneの場合は、pattern属性で <input type="text" pattern=”[0-9]”> とかすると大丈夫(input type="password"はNG)だけど、androidの場合はhtml5のtype属性に頼るしかないのかな。 <input type=”tel”> <input type=”number”>うーん。。。