assign value from server to integer in objective -c

264 Views Asked by At

I am coming from swift background, I have a code in objective -c that take value from server and it takes correctly here is the code bellow.

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


    _MessageExpire = [message_expiration intValue];




}

and I have a variable:

@property (nonatomic, assign) NSInteger *MessageExpire;

what I want is: My variable that is integer takes the value that come from server and I did in this way :

_MessageExpire = [message_expiration intValue];

but I get the error that say: incompatible integer to pointer conversion assigning .....

Any help appreciate

1

There are 1 best solutions below

0
Hitesh On BEST ANSWER

Objective - C

Did not assign pointer(*) to NSInteger

@property (nonatomic, assign) NSInteger MessageExpire;