iPhone_SDK のバックアップ(No.3) - アールメカブ

アールメカブ


iPhone_SDK のバックアップ(No.3)


Programming

iPhone SDK メモ

スタンフォード大で iPhone 開発講座とコードが公開されていたらしいが,今は削除されている.

_ テーブルのグループ化と配列

return [[ array objectAtIndex:section] count]
cex.text =  [[ array objectAtIndex:indexPath.section]
                       objectAtIndex:indexPath.row]
return cell;

でいけるだろう。

こういう方法も紹介されている.

_ 文字列から改行記号を取る.

componentsSeparatedByString関数が指定されたトークンで文字列を区切って配列を返すので,とりあえずこうする.

string = [[string componentsSeparatedByString:@"\n"] 
           objectAtIndex:0];

ただし "\n" はマックではoptions キーを押しながら円マークで入力