2014-02-24 3 views
0

제출 버튼을 누르면 배열에 항목을 넣을 뷰 컨트롤러를 iOS 앱에 설정하고 있습니다. 그러나 개체에서 'item'속성을 찾을 수 없다는 오류가 발생합니다. 나는 'item'이 다른 구현 인 XYZMatchCenterViewController.m에 정의되어 있기 때문에 이것이 의심 스럽지만 XYZBuyViewController.m이 그것을 사용하도록 만드는 방법을 잘 모르겠습니다.속성 'item'이 객체에 없습니다.

XYZBuyViewController.m :

#import "XYZBuyViewController.h" 

@interface XYZBuyViewController() 

@property (weak, nonatomic) IBOutlet UITextField *itemName; 

@property (weak, nonatomic) IBOutlet UIButton *submitButton; 

@end 

@implementation XYZBuyViewController 


- (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender 
{ 
    if (sender != self.submitButton) return; 
    if (self.itemName.text.length > 0) { 
     self.Item = [[XYZItem alloc] init]; 
     self.Item.itemName = self.itemName.text; 
    } 
} 


- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil 
{ 
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; 
    if (self) { 
     // Custom initialization 
    } 
    return self; 
} 

- (void)viewDidLoad 
{ 
    [super viewDidLoad]; 
    // Do any additional setup after loading the view. 
} 

- (void)didReceiveMemoryWarning 
{ 
    [super didReceiveMemoryWarning]; 
    // Dispose of any resources that can be recreated. 
} 

@end 

XYZMatchCenterViewController.m : 당신은 전혀 item 속성을 선언하지 않은

#import "XYZMatchCenterViewController.h" 
#import "XYZItem.h" 

@interface XYZMatchCenterViewController() 

@property NSMutableArray *items; 

@end 

@implementation XYZMatchCenterViewController 

- (id)initWithStyle:(UITableViewStyle)style 
{ 
    self = [super initWithStyle:style]; 
    if (self) { 
     // Custom initialization 
    } 
    return self; 
} 

- (void)viewDidLoad 
{ 
    [super viewDidLoad]; 

    self.items = [[NSMutableArray alloc] init]; 

    // Uncomment the following line to preserve selection between presentations. 
    // self.clearsSelectionOnViewWillAppear = NO; 

    // Uncomment the following line to display an Edit button in the navigation bar for this view controller. 
    // self.navigationItem.rightBarButtonItem = self.editButtonItem; 
} 

- (void)didReceiveMemoryWarning 
{ 
    [super didReceiveMemoryWarning]; 
    // Dispose of any resources that can be recreated. 
} 

#pragma mark - Table view data source 

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView 
{ 
    // Return the number of sections. 
    return [self.items count]; 
} 

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
{ 

    // Return the number of rows in the section. 
    return 3; 
} 

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    static NSString *CellIdentifier = @"ListPrototypeCell"; 

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]; 

    XYZItem *Item = [self.items objectAtIndex:indexPath.row]; 
    cell.textLabel.text = Item.itemName; 

    return cell; 
} 

/* 
// Override to support conditional editing of the table view. 
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    // Return NO if you do not want the specified item to be editable. 
    return YES; 
} 
*/ 

/* 
// Override to support editing the table view. 
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    if (editingStyle == UITableViewCellEditingStyleDelete) { 
     // Delete the row from the data source 
     [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade]; 
    } 
    else if (editingStyle == UITableViewCellEditingStyleInsert) { 
     // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view 
    } 
} 
*/ 

/* 
// Override to support rearranging the table view. 
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath 
{ 
} 
*/ 

/* 
// Override to support conditional rearranging of the table view. 
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    // Return NO if you do not want the item to be re-orderable. 
    return YES; 
} 
*/ 

/* 
#pragma mark - Navigation 

// In a story board-based application, you will often want to do a little preparation before navigation 
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender 
{ 
    // Get the new view controller using [segue destinationViewController]. 
    // Pass the selected object to the new view controller. 
} 

*/ 

@end 
+0

라인 #import "XYZItem.h"를 추가해 보았습니까? – Gruntcakes

+0

그래, 작동하지 않는 것 같습니다. – TheDudeGuy

답변

0

. items이라는 속성이 있습니다. 아마도 그 뜻입니다.

+0

나는 을 참조하고 있었다.'XYZItem * Item = [self.items objectAtIndex : indexPath.row]; MatchCenterViewController에 나타나는 cell.textLabel.text = Item.itemName; ' 입니다. – TheDudeGuy

관련 문제