gpt4 book ai didi

ios - 从 JSON 设置后立即释放模型属性

转载 作者:行者123 更新时间:2023-11-29 02:25:10 24 4
gpt4 key购买 nike

在我的模型上设置 NSString 属性后,它立即返回为 Null。奇怪的是,设置任何 typedef 属性都会被保留(即 NSInteger)。代码如下。我也通过 GCD 运行此方法,但我将其注释掉并且它没有改变任何内容。我在模型中也有一些 NSCoding 方法,但是注释掉委托(delegate)并没有改变任何东西。

实际上一切正常,包括访问 JSON 字典和 NSLogging 结果,除了设置我的模型属性不是 typedef。

更新

将任何 NSString 分配给 [dictionary valueForKey:@"first_name"] 返回 Null 很明显这是访问字典的问题。

更新 2

记录字典后,我注意到有些键没有“”,有些值没有“”。我正在使用 rails 中的 as_json,而在 postman chrome 扩展中这不会发生

{
available = 1;
boxing = 0;
certificates = "";
city = A;
"created_at" = "2014-12-14T07:23:35.445Z";
description = "Short description";
"drivers_license" = CA12345;
"drivers_license_expiration" = "12/20";
"drivers_license_state" = CA;
email = "test4@aol.com";
"facebook_id" = "";
"first_name" = TEsty;
gender = "";
id = 1;
"last_name" = Again;
latitude = "<null>";
longitude = "<null>";
password = g;
pilates = 0;
"reset_password_token" = "<null>";
running = 0;
strength = 0;
"updated_at" = "2014-12-25T08:42:27.122Z";
yoga = 0;
}

.h文件

@interface FSTrainer : NSObject <NSCoding>

@property (nonatomic) NSInteger id;
@property (nonatomic, strong) NSString* first_name;
@property (nonatomic, strong) NSString* last_name;

- (id) init;
- (id) initWith:(NSMutableDictionary *)dictionary;

等..

.m文件

-(id)init{
self = [super init];
if (!self) return nil;
return self;
}

- (id) initWith:(NSMutableDictionary *)dictionary
{
self = [super init];
if (!self) return nil;


if ([dictionary valueForKey:@"id"] != [NSNull class])
{self.id = [[dictionary valueForKey:@"id"] integerValue];}

if ([dictionary valueForKey:@"first_name"] != [NSNull class])
{
[self setFirst_name:[dictionary valueForKey:@"first_name"]];

NSLog(@"%@", [dictionary objectForKey:@"first_name"]);
NSLog(@"%@", [dictionary valueForKey:@"first_name"]);}
//Both NSLogs print out the correct names

if ([dictionary valueForKey:@"last_name"] != [NSNull class])
{self.last_name = [valueForKey objectForKey:@"last_name"];}

etc....

return self;
}

调用者:

    dispatch_async(dispatch_get_global_queue(0, 0), ^{
[self computationForRails];
});

函数

-(void)computationForRails{
...
FSTrainer* currentTrainer = [[FSTrainer alloc] initWith:[tempdict valueForKey:@"data"]];
//sol-added JNKeychian
[JNKeychain saveValue:currentTrainer forKey:@"current_trainer"];
}

其中tempdict等于(data是字典中的一个key)

    id jsonObject = [NSJSONSerialization JSONObjectWithData: data
options: NSJSONReadingMutableContainers
error: &error];

我稍后访问模型的地方(我保存的模型没有正确设置其属性,所以这是应用程序崩溃的地方

    FSTrainer* current_trainer = [JNKeychain loadValueForKey:@"current_trainer"];
NSString* trainerName = current_trainer.first_name;

最佳答案

替换您的代码

[self setFirst_name:[dictionary valueForKey:@"first_name"]];

使用此代码

[self setFirst_name:[NSString stringWithFormat:@"%@",[dictionary valueForKey:@"first_name"]]];

对我有用

关于ios - 从 JSON 设置后立即释放模型属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27652195/

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