Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

objective c - "Missing context for method declaration" for overridden description method

Am getting a "Missing context for method declaration" for my overridden description method. Can you tell what's wrong with the code?

#import <Foundation/Foundation.h>
#import "BNRItem.h"

int main(int argc, const char * argv[])
{

  @autoreleasepool {

      // Create a mutable array object, store its address in items variable
    NSMutableArray *items = [[NSMutableArray alloc]init];

    BNRItem *p = [[BNRItem alloc]init];
    NSLog(@"%@ %@ %@ %d", [p itemName], [p dateCreated], [p serialNumber], [p valueInDollars]);

    // This creates a new NSString, "Red Sofa" and gives it to the BNRItem
    [p setItemName:@"Red Sofa"];

    // This creates a new NSString, "A1B2C" and gives it to the BNRItem
    [p setSerialNumber:@"A1B2C"];

    // We send the value 100 to be used as the valueInDollars of this BNRItem
    [p setValueInDollars:100];

    // Destroy the array pointed to by items
    items = nil;

  }
    return 0;
}

-(NSString *)description // Missing context for method declaration
{
  NSString *descriptionString =
  [[NSString alloc]initWithFormat:@"%@ (%@): Worth $%d, recorded on %@",
   itemName;
   serialNumber;
   valueInDollars;
   dateCreated];

return descriptionString;

}

BNRItem.m

#import "BNRItem.h"

@implementation BNRItem

-(void)setItemName:(NSString *)str {
  itemName = str;
}

-(NSString *)itemName {
  return itemName;
}

-(void)setSerialNumber:(NSString *)str {
  serialNumber = str;
}

-(NSString *)serialNumber {
  return serialNumber;
}

-(void)setValueInDollars:(int)i {
  valueInDollars = i;
}

-(int)valueInDollars {
  return valueInDollars;
}

-(NSDate *)dateCreated {
  return dateCreated;
}

-(NSString *)description
{
  NSString *descriptionString = 
  [[NSString alloc]initWithFormat:@"%@ (%@): Worth $%d, recorded on %@",
   itemName,
   serialNumber; // Expected "]"
   valueInDollars, // Expression result unused
   dateCreated]; //Extraneous "]" before ";"

  return descriptionString;
}


@end
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Your method appears to be free floating inside main.m. An instance method needs to be placed inside the implementation section of a class. (between @implementation and @end).

My guess is that you should move that code into BNRItem.m.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...