我已经在 ViewdidLoad 中声明了带有一些字符串值的 NSString,例如..
int i=1;
strval=[NSString stringWithFormat:@"%03d",i];
strval=[NSString stringWithFormat:@"S%@",strval];
NSLog(@"Value %@",strval);
它给出了正确的结果为 S001,但是当我在 IBAction 中打印相同的结果时,
- (IBAction)stringvalue:(id)sender {
NSLog(@"Value %@",strval);
}
它每次都给出未知值。有时它会抛出 EXEC_BAD_ACCESS 错误。
请帮我..