Posts tagged form
[iPhone 開発メモ] アプリから URL を指定して Web ページを Safari で開く
0アプリから URL を指定して Safari で開く方法
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.syuhari.jp/blog"]];
iPhone アプリ開発メモ 時刻を取得する
6※iPhone アプリを開発する勉強中です。自分用に勉強したときのメモです。
非公開API を使用していたためコードを改めました(2010.12.7)
現在時刻を取得する方法
NSTimer で1秒ごとに onTimer メソッドを呼び出し、UILabel clock の内容を更新する。
- (void)onTimer { NSDate *now = [NSDate date]; [formatter setDateFormat:@"kk"]; int h = [[formatter stringFromDate:now] intValue]; [formatter setDateFormat:@"mm"]; int m = [[formatter stringFromDate:now] intValue]; [formatter setDateFormat:@"ss"]; int s = [[formatter stringFromDate:now] intValue]; clock.text = [NSString stringWithFormat:@"%02d:%02d:%02d", h, m, s]; } - (void)viewDidLoad { timer = [NSTimer scheduledTimerWithTimeInterval:(1.0) target:self selector:@selector(onTimer) userInfo:nil repeats:YES]; }
CakePHP 1.2 RC3 リリース
0Release: CakePHP RC3 – The RC of Triumph! (Articles) | The Bakery, Everything CakePHP
RC3 はパフォーマンスが大幅に向上されているようです。
Over the past few weeks, Larry has worked tirelessly on iteration after iteration of performance improvements, and now we’re faster than ever before. By itself, the bootstrap process is over 10x faster than RC2, and basic requests for static content are now about 5x faster overall.
Mac でフォーム入力時に Tab キーでチェックボックスなどにもフォーカスさせる
1Mac にスイッチしてから不便だったことがあります。ブラウザでフォーム入力しているときに Tabキーを押すとチェックボックスやラジオボタンなどにフォーカスがいかないことです。Windows の時は Tab でフォーカスをチェックボックスに当ててスペースで選択したり、ラジオボタンを矢印キーで選択したりとキーボードですませていたので非常に不便でした。
(続きを読む…)
[symfony] askeet 5日目
15日目はログイン処理の追加とページ処理です。
ログイン処理
ログインリンク追加
askeet/apps/frontend/templates/layout.php
about のリンクの前に入れる
<li><?php echo link_to('sign in', 'user/login') ?></li>
[symfony] askeet 4日目
14日目です。
昨日までに作成した質問の一覧画面から質問の個別表示ページ
http://askeet/frontend_dev.php/question/show/id/1
にアクセスするとエラーになる。調べると show アクションもビューもない。
(続きを読む…)
[symfony] askeet デバッグモードが表示できない件 [解決]
1askeet 1日目の最後でデバッグモードを表示させると
Your are not allowed to access this file. Check frontend_dev.php for more information.
と表示されてしまう件ですが、解決しました。
原因は /home/askeet/web/frontend_dev.php の4行目?7行目で
if (!in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1'))) { die('Your are not allowed to access this file. Check '.basename(__FILE__).' for more information.'); }
となっていて他の IP からのアクセスを拒否していました。
(続きを読む…)