2013-04-13から1日間の記事一覧

Google chart APIでQRコードを生成する

http://allabout.co.jp/gm/gc/24013/ <img src="http://chart.apis.google.com/chart?chs=150x150&cht=qr&chl=http://allabout.co.jp/" width="150" height="150" alt="QRコード">

iOSでJSONを使う

http://code2wing.blog83.fc2.com/blog-entry-63.html NSLog(@"WebAPIのURL:%@",apiUrlJson ); NSURL *httpDataUrl2 = [NSURL URLWithString:apiUrlJson]; NSURLRequest *request = [NSURLRequest requestWithURL:httpDataUrl2]; NSData *json_data = [NSUR…

rubyで空白かどうか確認する

http://www.ruby-forum.com/topic/160638nil?, empty?, blank?メソッドなどについて。 モデルでカラムはあるけど中身が空であるものを判定したいときは blank?メソッドを使う。

Storyboardを使わないで画面遷移を実装する

#import "nextViewController - (IBAction)nextButton:(id)sender { nextViewController *mycontroller = [self.storyboard instantiateViewControllerWithIdentifier:@"viewIdentifier"]; [self presentViewController:mycontroller animated:YES completio…

iOSで値の受け渡し with prepareForSegue

http://eien.seesaa.net/article/261740269.html -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { if ( [[segue identifier] isEqualToString:@"hogeIdentifier"] ) { NextViewController *nextViewController = [segue destination…