5

WKInterfaceTable をセットアップしようとしています。Applesのドキュメントに従いました。ラベルにテキストが表示されず、コンソールに次のエラー メッセージが表示されます。

Cannot specify setter 'setTitle:' for properties of NSObject or WKInterfaceController

どうすればこれを修正できますか? Objective-Cでお願いします。これが私のコードです:

.h

#import <Foundation/Foundation.h>
#import <WatchKit/WatchKit.h>

@interface MainRowType : NSObject

@property (strong, nonatomic) IBOutlet WKInterfaceImage *image;
@property (strong, nonatomic) IBOutlet WKInterfaceLabel *title;

@end

.m

#import "MainRowType.h"

@implementation MainRowType


@end

.h

#import <WatchKit/WatchKit.h>
#import <Foundation/Foundation.h>
#import "MainRowType.h"

@interface WatchTableController : WKInterfaceController


@property (strong, nonatomic) IBOutlet WKInterfaceTable *tableView;
@property (strong, nonatomic) NSMutableArray *titleArray;


@end

.m

私はこのメソッドを呼び出します

- (void)configureTableWithData:(NSMutableArray*)dataObjects {

    [self.tableView setNumberOfRows:[dataObjects count] withRowType:@"mainRowType"];

    for (NSInteger i = 0; i < self.tableView.numberOfRows; i++) {
        MainRowType* theRow = [self.tableView rowControllerAtIndex:i];
        NSString *titleString = [dataObjects objectAtIndex:i];

        [theRow.title setText:titleString];

    }
}

ありがとう

4

1 に答える 1