カスタム オブジェクトBalanceData
をに挿入しようとするNSMutableArray
と、次のエラーが表示されます。
No known class method for selector 'balnce'
私のコード:
- (void)insertNewObject:(id)sender
{
if (!_balances) {
_balances = [[NSMutableArray alloc] init];
}
[_balances insertObject:[BalanceData balance] atIndex:0]; // error occures here
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
}
MasterViewController.m
上:
#import "MasterViewController.h"
#import "DetailViewController.h"
#import "BalanceData.h"
@interface MasterViewController () {
NSMutableArray *_balances;
}
@end
@implementation MasterViewController
@synthesize balances = _balances;
どうすれば適切な方法でそれを行うことができますか?