将服务器的值分配给 objective -c 中的整数

assign value from server to integer in objective -c

我来自 swift 背景,我在 objective -c 中有一段代码从服务器获取值,它正确地获取了下面的代码。

if (![message_expiration intValue]){
    NSLog(@"Check the message expiration integer value");


    _MessageExpire = [message_expiration intValue];




}

我有一个变量:

@property (nonatomic, assign) NSInteger *MessageExpire;

我想要的是:我的整数变量采用来自服务器的值,我是这样做的:

_MessageExpire = [message_expiration intValue];

但我收到错误消息:不兼容的整数到指针转换分配.....

感谢任何帮助

Objective - C

没有将指针(*)分配给NSInteger

@property (nonatomic, assign) NSInteger MessageExpire;