FC2ブログからRSSを取得すると、日付は以下のようになる。
<dc:date>2009-12-24T00:20:00+09:00</dc:date>
このままでは、少しかっこが悪いので、以下のように修正。
$date ="2009-12-05T05:55:00+09:00";
$date = strtotime($date);
$date = date('Y/m/d …
//セルが選択された際に呼び出される – (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { //選択されたセルを取得 UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; //セルにチェックが付いている場合はチェックを外し、付いていない場合はチェックを付ける if (cell.accessoryType == UITableViewCellAccessoryCheckmark) { cell.accessoryType = UITableViewCellAccessoryNone; } else { cell.accessoryType = UITableViewCellAccessoryCheckmark; } }
この投稿へのコメント
コメントはまだありません。