设置标识符时的表视图单元格错误

时间:2012-04-16 20:00:02

标签: uitableview xcode4.2 storyboard identifier

在xCode 4.2中,当我在storyboard中将identifier属性设置为我的原型单元格时,当我尝试构建项目时出现错误Uncategorized - Compilation Failed

我不确定你需要的所有信息,所以我会把我认为相关的信息......

首先,我有一个视图控制器,我在Storyboard中设置了一个表视图。在表格视图中,我放置了一个原型单元格。在原型单元格中,我放置了一个UIImageView和3个标签。

我有一个名为DOR_SearchCustomCell .h和.m文件的自定义单元类。这是.h文件:

@interface DOR_SearchCustomCell : UITableViewCell {

    __weak IBOutlet UIImageView *cellImage;
    __weak IBOutlet UILabel *cellTitle;
    __weak IBOutlet UILabel *cellText;
    __weak IBOutlet UILabel *cellDistance;
}

@property (weak, nonatomic) IBOutlet UIImageView *cellImage;
@property (weak, nonatomic) IBOutlet UILabel *cellTitle;
@property (weak, nonatomic) IBOutlet UILabel *cellText;
@property (weak, nonatomic) IBOutlet UILabel *cellDistance;

@end

.m文件:

#import "DOR_SearchCustomCell.h"

@implementation DOR_SearchCustomCell

@synthesize cellImage;
@synthesize cellTitle;
@synthesize cellText;
@synthesize cellDistance;

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        // Initialization code
    }
    return self;
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

@end

我的原型单元格将此类设置为自定义类,样式设置为Custom,标识符设置为specialsCell,图像和标签绑定到类文件中的变量。

控制视图控制器的类是DOR_SearchViewController,带有.h和.m文件。 .h文件是:

#import <UIKit/UIKit.h>
#import <sqlite3.h>
#import "DOR_RestaurantClass.h"
#import "DOR_SearchCustomCell.h"

@class Reachability;

@interface DOR_SearchViewController : UIViewController <UIActionSheetDelegate, NSURLProtocolClient, NSXMLParserDelegate, UITableViewDelegate, UITableViewDataSource> {

    __weak IBOutlet UITableView *tblView;

    NSMutableData *receivedData;
    NSXMLParser* parser;
    NSString *currentElement;
    NSMutableString *currentElementValue;
    NSMutableArray *listItems;
    NSMutableArray *listOfIds;
    NSMutableArray *listOfNames;
    NSMutableArray *listOfDistances;
    NSMutableArray *listOfImages;
    NSMutableArray *listOfAddresses;
    NSMutableArray *listOfAddresses2;
    NSMutableArray *listOfAddresses3;
    NSMutableArray *listOfDescriptions;
    NSMutableArray *listOfPhones;
}

@property (weak, nonatomic) IBOutlet UITableView *tblView;

@property (nonatomic, retain) NSMutableData *receivedData;
@property (nonatomic, retain) NSXMLParser *parser;
@property (nonatomic, retain) NSString *currentElement;
@property (nonatomic, retain) NSMutableString *currentElementValue;
@property (nonatomic, retain) NSMutableArray *listItems;
@property (nonatomic, retain) NSMutableArray *listOfIds;
@property (nonatomic, retain) NSMutableArray *listOfNames;
@property (nonatomic, retain) NSMutableArray *listOfDistances;
@property (nonatomic, retain) NSMutableArray *listOfImages;
@property (nonatomic, retain) NSMutableArray *listOfAddresses;
@property (nonatomic, retain) NSMutableArray *listOfAddresses2;
@property (nonatomic, retain) NSMutableArray *listOfAddresses3;
@property (nonatomic, retain) NSMutableArray *listOfDescriptions;
@property (nonatomic, retain) NSMutableArray *listOfPhones;

- (void)get_table_data;

@end

.m文件:

#import "DOR_SearchViewController.h"
#import "Reachability.h"

@implementation DOR_SearchViewController

@synthesize tblView;

@synthesize receivedData;
@synthesize parser;
@synthesize currentElement;
@synthesize currentElementValue;
@synthesize listItems;
@synthesize listOfIds;
@synthesize listOfNames;
@synthesize listOfDistances;
@synthesize listOfImages;
@synthesize listOfAddresses;
@synthesize listOfAddresses2;
@synthesize listOfAddresses3;
@synthesize listOfDescriptions;
@synthesize listOfPhones;

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];

    if (![[self loadSettings:@"view"] isEqualToString: @""]){
        [sortButton setTitle:[self loadSettings:@"view"] forState: (UIControlState)UIControlStateNormal];
    }

    listItems = [[NSMutableArray alloc] init];
    listOfIds = [[NSMutableArray alloc] init];
    listOfNames = [[NSMutableArray alloc] init];
    listOfDistances = [[NSMutableArray alloc] init];
    listOfImages = [[NSMutableArray alloc] init];
    listOfAddresses = [[NSMutableArray alloc] init];
    listOfAddresses2 = [[NSMutableArray alloc] init];
    listOfAddresses3 = [[NSMutableArray alloc] init];
    listOfDescriptions = [[NSMutableArray alloc] init];
    listOfPhones = [[NSMutableArray alloc] init];
    [self get_table_data];
}

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

- (void)didReceiveMemoryWarning
{
    // Releases the view if it doesn't have a superview.
    [super didReceiveMemoryWarning];

    // Release any cached data, images, etc that aren't in use.
}

- (void)get_table_data {
    NSURLRequest *theRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.url.com/"] cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0];
    NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];

    if (theConnection) {
        //NSLog (@"At connection");
        receivedData = [NSMutableData data];
    }
}

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
    [receivedData setLength:0];
}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
    [receivedData appendData:data];
}

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {

}

-(void)connectionDidFinishLoading:(NSURLConnection *)connection {  
    if(parser){
        parser = nil;
    }

    parser = [[NSXMLParser alloc] initWithData: receivedData];
    [parser setDelegate: self];
    [parser setShouldResolveExternalEntities: YES];
    [parser parse];

    [tblView reloadData];
}

- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName attributes:(NSDictionary *)attributeDict{
    //NSLog (@"At parser");
    currentElement = elementName;

    if ([currentElement isEqualToString:@"restaurant_details"]) {
        if ([currentElement isEqualToString:@"total_results"]) {
            //NSLog(@"Element: %@", currentElement);
        }else if ([currentElement isEqualToString:@"restaurant"]) {
            restaurantObj = [[DOR_RestaurantClass alloc]init];
        }
    }
}

- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string{
    //NSLog (@"At parser2");
    if(!currentElementValue)
        currentElementValue=[[NSMutableString alloc] initWithString:string];
    else
        [currentElementValue appendString:string];

    //NSLog(@"Name to be saved in Array :- %@",currentElement);

    //NSLog(@"the parser just found this text in a tag:%@",currentElementValue);
    if([currentElement isEqualToString:@"name"]) {
        restaurantObj.name=[NSString stringWithFormat:@"%@",currentElementValue];
        [listOfNames addObject:currentElementValue];
        //NSLog(@"At Name | Array = %@", listOfNames);
    }else{
        restaurantObj.name=@"";
    }
    if([currentElement isEqualToString:@"distance_from_current_location"]) {
        restaurantObj.distance=[NSString stringWithFormat:@"%@",currentElementValue];
        [listOfDistances addObject:string];
    }else{
        restaurantObj.distance=@"";
    }
    if([currentElement isEqualToString:@"restaurant_id"]) {
        restaurantObj.restId=[NSString stringWithFormat:@"%@",currentElementValue];
        [listOfIds addObject:string];
    }else{
        restaurantObj.restId=@"";
    }
    if([currentElement isEqualToString:@"address"]) {
        NSArray *stringArray = [currentElementValue componentsSeparatedByString:@" | "];
        restaurantObj.address=[stringArray objectAtIndex:0];
        restaurantObj.address2=[stringArray objectAtIndex:1];
        restaurantObj.address3=[stringArray objectAtIndex:2];
        [listOfAddresses addObject:[stringArray objectAtIndex:0]];
        [listOfAddresses2 addObject:[stringArray objectAtIndex:1]];
        [listOfAddresses3 addObject:[stringArray objectAtIndex:2]];
    }else{
        restaurantObj.address=@"";
        restaurantObj.address2=@"";
        restaurantObj.address3=@"";
    }
    if([currentElement isEqualToString:@"phone_number"]) {
        restaurantObj.phone=[NSString stringWithFormat:@"%@",currentElementValue];
        [listOfPhones addObject:string];
    }else{
        restaurantObj.phone=@"";
    }
    if([currentElement isEqualToString:@"description"]) {
        restaurantObj.description=[NSString stringWithFormat:@"%@",currentElementValue];
        [listOfDescriptions addObject:string];
    }else{
        restaurantObj.description=@"";
    }
    if([currentElement isEqualToString:@"image_url"]) {
        restaurantObj.image=[NSString stringWithFormat:@"%@",currentElementValue];
        [listOfImages addObject:string];
    }else{
        restaurantObj.image=@"";
    }
    if([currentElement isEqualToString:@"restaurant_type"]) {
        //restaurantObj.Name=[NSString stringWithFormat:@"%@",currentElementValue];
    }else{
        //restaurantObj.name=@"";
    }
    restaurantObj.expires=@"";

    //NSLog (@"ID Array: %@", restaurantObj);
}

-(void)parser:(NSXMLParser*)parser didEndElement:(NSString*)elementName namespaceURI:(NSString*)namespaceURI qualifiedName:(NSString*)qualifiedName {
    //NSLog(@"Current element in End Element Category:- %@",currentElement);
    if([elementName isEqualToString:@"restaurant"]) {
        //NSLog(@"Array: %@", restaurantObj);
        //[listItems addObject:restaurantObj];
    }else{
        currentElementValue=nil;
    }

}

// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad
{
    [super viewDidLoad];
}

- (void)viewDidUnload
{
    [super viewDidUnload];
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSLog (@"Table Cells: %d",[listOfIds count]);
    return [listOfIds count];
}

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

    DOR_SearchCustomCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];

    if (cell == nil){
        cell = [[DOR_SearchCustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
    }

    NSLog (@"Name: %@", [listOfNames objectAtIndex:indexPath.row]);

    cell.cellTitle.text = [listOfNames objectAtIndex:indexPath.row];
    cell.cellText.text = [listOfDescriptions objectAtIndex:indexPath.row];
    cell.cellDistance.text = [listOfDistances objectAtIndex:indexPath.row];

    cell.textLabel.text = [listOfNames objectAtIndex:indexPath.row];

    return cell;
}

@end

如果我没有在故事板中输入单元格标识符名称,我的项目会编译并且我会获得默认的单元格样式(在cell == nil时设置),这就是我添加cell.textLabel.text的原因部分在底部用于测试目的。

我真的对iPhone的编程知之甚少。任何帮助将不胜感激。我找到的所有教程似乎都不适合我的项目(在视图控制器中有表视图),并且在我尝试实现它们时不起作用。感谢所有回复。如果您需要更多信息,请与我们联系。

1 个答案:

答案 0 :(得分:1)

问题是你的UIImageView&amp; UILabel出口来自您的原型单元。

原型细胞不是真正的细胞;它可以作为真实实例的蓝图。当你将UIImageViews放在这个蓝图单元格中时,故事板并不开心然后通过网点将它们绑定到你的班级。你基本上试图将抽象的东西与具体的东西联系起来。那时,故事板失败了,并且出现了这个不友好的构建错误。

此主题中的更多详细信息:What does the "Couldn't compile connection:" error mean?