1

在 xCode 4.2 中,当我将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

我的原型单元将此类设置为自定义类,样式设置为自定义,标识符设置为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 编程。任何帮助将不胜感激。我发现的所有教程似乎都不适合我的项目(在视图控制器中包含表格视图),并且在我尝试实现它们时都不起作用。感谢所有回复。如果您需要更多信息,请与我们联系。

4

1 回答 1

1

问题是来自原型单元的 UIImageView 和 UILabel 出口。

原型细胞不是实际细胞;它作为真实实例的蓝图。当您将 UIImageViews 放置在此蓝图单元格中然后通过插座将它们绑定到您的类时,Storyboard 会不高兴。您基本上是在尝试将抽象的事物与具体的事物联系起来。那时,故事板失败并出现了这个不友好的构建错误。

此线程中的更多详细信息:“无法编译连接:”错误是什么意思?

于 2012-05-15T14:24:57.073 回答