gpt4 book ai didi

ios - 为什么我收到字符串变量错误?

转载 作者:行者123 更新时间:2023-11-28 21:33:15 42 4
gpt4 key购买 nike

我有声明的变量:

@property(strong, nonatomic) NSString* like_id;

我在 - (void)viewDidLoad {} 中调用函数 GetLike

- (void) GetLike {
if(![self.like_id isEqualToString:@""]){
// TODO
}
}

我收到错误:Thread 1, signal SIGABRT

最佳答案

这对我来说很好。

@interface ViewController ()
@property(strong, nonatomic) NSString* like_id;
@end

@implementation ViewController

- (void)viewDidLoad {
[super viewDidLoad];
[self getLike];
}

- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}

- (void)getLike {
if(![self.like_id isEqualToString:@""]){
NSLog(@"Liked !");
}
}
@end

关于ios - 为什么我收到字符串变量错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34999907/

42 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com