iPhone

accessing unknown 〜 component of a property が出たとき

ちょっと躓いたので。「accessing unknown 〜 component of a property」のエラーが出たときは、多分、import文に不足があります。 accessing unknown 'position' component of a property accessing unknown 'bounds' component of a property とか出たとき…

NSFileManagerでファイルの属性を取得する

前回の記事でもちょっと書いたけど、NSFileManagerを使うと、ファイルの属性をNSDictionary形式で取得できる。iOS Reference Library - NSFileManager Class Referenceファイルシステムの情報を取得する「attributesOfFileSystemForPath:error:」とファイル…

ファイルの属性を取得するときは

fileAttributesAtPath:traverseLink: ではなく、 attributesOfItemAtPath:error: を使う!Documentation Archive こんな感じで。 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { NSDictionary …

warning: ’NSTimer’ may not respond to ’+scheduledTime*

timer = [NSTimer scheduledTimerWithTimeInterval:target:selfselector:@selector(timerCallback:)userinfo:nilrepeats:NO];○userInfoと書くべきが、×userinfoとなっていた。 Iとiの違いって分かりづらい!