Skip to content

Instantly share code, notes, and snippets.

@IamSaurav
Created July 9, 2019 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IamSaurav/d7631adf7df12390362ad30fb7fe989b to your computer and use it in GitHub Desktop.
Save IamSaurav/d7631adf7df12390362ad30fb7fe989b to your computer and use it in GitHub Desktop.
-(void)box {
int age = 22;
NSNumber* ageBoxed;
ageBoxed = @(age);
NSLog(@"%@", ageBoxed);
}
-(void)unbox {
int age = 22;
NSNumber* ageBoxed;
ageBoxed = @(age);
int unboxed = (int)ageBoxed;
NSLog(@"%d", unboxed);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment