目次

関連ページ

インストール

dmgファイルをマウントしてインストールスクリプトを実行

アンインストール

ターミナルで以下のコマンドを実行

$ sudo /Developer/Library/uninstall-devtools --mode=all

トラブルシューティング

implicit declaration of function ‘usleep’

該当ソースの先頭でunistd.hをimportする。

#import<unistd.h>

'directoryContentsAtPath:' is deprecated

enumeratorAtPathに変換する。変更前

    NSArray *array = [[NSFileManager defaultManager] directoryContentsAtPath:path];
    for (NSString *fname in array) {
    }

変更後

    NSDirectoryEnumerator *dirEnum = [[NSFileManager defaultManager] enumeratorAtPath:path];
    NSString* fname;
    while (fname = [dirEnum nextObject])  { 
    }

'fileAttributesAtPath:' is deprecated

attributesOfItemAtPathに変換する。変更前

        NSDictionary *fileDict = [[NSFileManager defaultManager] attributesOfItemAtPath:[path stringByAppendingPathComponent:fname] error:&error];

変更後

	NSError* error;
        NSDictionary *fileDict = [[NSFileManager defaultManager] attributesOfItemAtPath:[path stringByAppendingPathComponent:fname] error:&error];		


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS