我在我的 NSUserDefault 中为键 TCshow 设置了一个布尔值,我想运行一个 nslog 测试键是否保存,并且我试图打印出布尔值。这是我的代码,但它不起作用,有什么建议吗?
- (IBAction)acceptAction:(id)sender {
//key store to nsuserdefault
self.storedKey = [[NSUserDefaults alloc] init];
[self.storedKey setBool:YES forKey:@"TCshow"];
//trying to print out yes or not, but not working...
NSLog(@"%@", [self.storedKey boolForKey:@"TCshow"]);
}