Life is Really Short, Have Your Life!!

ござ先輩の主に技術的なメモ

objective-cのintとStringの変換

いつも忘れる。

//文字列を数値に変換
[@"100" intValue ];
//数値を文字列に変換
[stringWithFormat : @"%d", 100];