firefox 一度ブラウザに保存されたパスワードの削除・変更 2010年06月16日 過去Blog firefox Firefoxのメニュー「ツール」-「オプション」-「セキュリティー」-「パスワード」から変更したいパスワードを選択し削除。 los angeles cosmetic dentist
UITableView のcellの複数選択を実装する 2011年01月25日 過去Blog //セルが選択された際に呼び出される - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { //選択されたセルを取得 UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; /… この記事の続きを読む
htmlソース内からメールアドレスを抽出 2010年05月20日 過去Blog //mailto:が使用されているメールアドレス preg_match_all("/mailto:(.+?)"/s", $html2, $matches); //mailto:は使用されておらず、@を基準に判別 preg_match_all('/[-.w/]+@[-._[:lower:]d]+.[[:lower:]]{2,4}/s', $html2, $matches); … この記事の続きを読む
PHP strstr stristr ある文字列が含まれるかどうか調べる 2010年06月11日 過去Blog $string = 'Hello World!'; if(stristr($string, 'earth') === FALSE) { echo '"earth" not found in string'; } // 出力は "earth" not found in string となります 参照元:http://www.php.net/manual/ja/function.st… この記事の続きを読む
表示領域外部(上部)にラベルを配置し、フリックにて表示させる 2010年12月17日 過去Blog 画面にテーブルビューが表示されている(XCodeテーブルテンプレート)を想定しています。以下の画像はtabBar,Navigationなど入っていますが、気にしないでください。 … この記事の続きを読む
この投稿へのコメント
コメントはまだありません。