我尝试按照斯坦福 iphone 开发教程进行操作,但由于我的 iPhone 应用程序崩溃而陷入困境。帮助!
错误信息
2013-03-03 12:10:39.055 RPN 计算器[2166:11303] *由于未捕获的异常“NSUnknownKeyException”而终止应用程序,原因:“[setValue:forUndefinedKey:]:此类不符合键的键值编码数字按下。
标题
import <UIKit/UIKit.h>
@interface CalculatorViewController : UIViewController
@property (weak, nonatomic) IBOutlet UILabel *display;
@end
执行
#import "CalculatorViewController.h"
@interface CalculatorViewController ()
@end
@implementation CalculatorViewController
- (IBAction)digitPressed:(UIButton *)sender {
NSString *digit = [sender currentTitle];
NSLog(@"Digit pressed = %@", digit);
}
@end