Запутано в документе Руководство пользователя приложения для iPhone

Я пишу одно из моих первых приложений для iPhone - простой способ запоминания вещей о людях. Я следую документу iOS под названием " Руководство по программированию приложений на базе iOS для iOS", и я дошел до того, что мы запрашиваем локальное устройство и iCloud для обнаружения и загрузки документов. В руководстве они используют собственный класс, и поскольку они не показывают код для класса, я не понимаю, как он должен выглядеть. Они дают это описание пользовательского класса "FileRepresentation":

Пример приложения теперь имеет массив (_fileList) объектов пользовательской модели, которые инкапсулируют имя и URL-адрес файла каждого из документов приложения. (FileRepresentation - это пользовательский класс этих объектов.)

Кто-нибудь может привести пример того, как будет выглядеть реализация класса "FileRepresentation"?

Части перечислены в листингах 4-3 и 4-4 на странице " Управление жизненным циклом документа":

Перечисление 4-3

-(void)viewDidLoad {
    [super viewDidLoad];
    // set up Add and Edit navigation items here....
    if (self.documentsInCloud) {
        _query = [[NSMetadataQuery alloc] init];
        [_query setSearchScopes:[NSArray arrayWithObjects:NSMetadataQueryUbiquitousDocumentsScope, nil]];
        [_query setPredicate:[NSPredicate predicateWithFormat:@"%K LIKE '*.txt'", NSMetadataItemFSNameKey]];
        NSNotificationCenter* notificationCenter = [NSNotificationCenter defaultCenter];
        [notificationCenter addObserver:self selector:@selector(fileListReceived)
            name:NSMetadataQueryDidFinishGatheringNotification object:nil];
        [notificationCenter addObserver:self selector:@selector(fileListReceived)
            name:NSMetadataQueryDidUpdateNotification object:nil];
        [_query startQuery];
    } else {
        NSArray* localDocuments = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:
            [self.documentsDir path] error:nil];
        for (NSString* document in localDocuments) {
            [_fileList addObject:[[[FileRepresentation alloc] initWithFileName:[document lastPathComponent]
            url:[NSURL fileURLWithPath:[[self.documentsDir path]
            stringByAppendingPathComponent:document]]] autorelease]];
        }
    }
}

Перечисление 4-4

-(void)fileListReceived {
     NSString* selectedFileName=nil;
     NSInteger newSelectionRow = [self.tableView indexPathForSelectedRow].row;
     if (newSelectionRow != NSNotFound) {
        selectedFileName = [[_fileList objectAtIndex:newSelectionRow] fileName];
     }
     [_fileList removeAllObjects];
     NSArray* queryResults = [_query results];
     for (NSMetadataItem* result in queryResults) {
         NSString* fileName = [result valueForAttribute:NSMetadataItemFSNameKey];
         if (selectedFileName && [selectedFileName isEqualToString:fileName]) {
             newSelectionRow = [_fileList count];
         }
         [_fileList addObject:[[[FileRepresentation alloc] initWithFileName:fileName
             url:[result valueForAttribute:NSMetadataItemURLKey]] autorelease]];
     }
     [self.tableView reloadData];
     if (newSelectionRow != NSNotFound) {
         NSIndexPath* selectionPath = [NSIndexPath indexPathForRow:newSelectionRow inSection:0];
         [self.tableView selectRowAtIndexPath:selectionPath animated:NO scrollPosition:UITableViewScrollPositionNone];
     }
 }

1 ответ

Решение

Для людей, которые видят это в будущем, это то, что я разработал, увидев, как другие классы реализуют свои init функции:

#import "FileRepresentation.h"

@implementation FileRepresentation

@synthesize fileName = _fileName, fileUrl=_fileUrl;

-(id) initWithFileName:(NSString*)fileName url:(NSURL*)url
{
    self = [super init];
    if(self){
        self.fileName = fileName;
    }
    return self;
}

@end
Другие вопросы по тегам