English 中文(简体)
iphone uitableview withtom cell - xcode 4
原标题:iphone uitableview with custom cell - xcode 4

因此,我知道有这方面的在线文件,我觉得像我一样,已经尝试了一切,而且仍然无法工作。 我正试图与我在印巴创建的一个习俗小组一道执行一张表。 <代码>CustomCell.xib文档的所有人为UITableViewCell。 我正在执行以下表格:

#import <UIKit/UIKit.h>

@interface QuickCalcController : UIViewController<UITabBarDelegate, UITableViewDelegate, UITableViewDataSource>{

NSMutableArray *numbers;
NSMutableArray *discount_numbers;

}

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

@end

这里是执行档案中的法典:

- (UITableViewCell *)tableView:(UITableView *)tblView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{
    static NSString *CellIdentifier = @"DiscountCellController";
    DiscountCellController *cell = [tblView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil){
    NSLog(@"New Cell Made");

    NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"DiscountCellController" owner:nil options:nil];

    for(id currentObject in topLevelObjects)
    {
        if([currentObject isKindOfClass:[DiscountCellController class]])
        {
            cell = (DiscountCellController *)currentObject;
            break;
        }
    }
}


cell.standardLabel.text = @"hi";//[discount_numbers objectAtIndex:indexPath.row];
cell.discountLabel.text = @"hi";//[discount_numbers objectAtIndex:indexPath.row];
NSLog(@"setting the cell");
return cell;
}

#pragma mark -
#pragma mark Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tblView
{
    return 1;
}

- (NSString *)tableView:(UITableView *)tblView titleForHeaderInSection:    (NSInteger)section
{
    return nil;
}

- (NSInteger)tableView:(UITableView *)tblView numberOfRowsInSection:(NSInteger)section
{
    return 5;
}

- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tblView {
    return nil; 
}

我已将海关单位的标签与<条码>标准劳工标准/代码>和<条码>在<条码>上贴上>。 我发现这一错误:

[3390:207] *** Terminating app due to uncaught exception  NSUnknownKeyException , reason:  [<NSObject 0x4e227d0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key standardLabel. 

当我失踪时?

最佳回答

是的。 首先,这是一个常见错误。 在你关于该囚室的刀子档案中,文件所有人被定义为NSObject。 在您的刀切档案中,你应有一个可贵的书状,这句话都是这样。 无观点。 改用可调号的电文。 现在这个重要部分是,正确点击记名员与您的标签挂钩等等。

问题回答

暂无回答




相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签