-2
#import <Foundation/Foundation.h>

int main(int argc, const char * argv[])
{

@autoreleasepool {
    NSString *a;
    NSString *b;
    //NSString *filePath = [[NSBundle mainBundle] pathForResource:@"Testimony" ofType:@"docx"];
    NSString *nameString = [NSString stringWithContentsOfFile:@"/Testimony.docx"
                                                     encoding:NSUTF8StringEncoding
                                                        errro:NULL];

    NSArray *names = [nameString componentsSeparatedByString:@"\n"];

    for(NSString *n in names){

        NSRange p = [n rangeOfString:@"Tobi" options:NSCaseInsensitiveSearch];
        NSRange r = [n rangeOfString:@"tobi" options:NSCaseInsensitiveSearch];


        if(p.location != NSNotFound){
            //NSLog(@"%@", n);
            a = n;
        }
        if(r.location != NSNotFound){
            //NSLog(@"%@", n);
            b = n;
        }

    }
    if([a caseInsensitiveCompare:b] == NSOrderedAscending){
        NSLog(@"a %@ comes before b %@", a, b);
    }

}
return 0;
}

コンパイラは、「セレクターの既知のクラスメソッドがありません」というエラーを出し続けます。Word文書はプログラムと同じフォルダにあります..何が問題なのかわかりません。あなたの助けは大歓迎です。ありがとう

4

1 に答える 1