Skip to content

Instantly share code, notes, and snippets.

@m2lan
Created November 13, 2014 03:37
Show Gist options
  • Save m2lan/0e1acf079692cfc5f2c3 to your computer and use it in GitHub Desktop.
Save m2lan/0e1acf079692cfc5f2c3 to your computer and use it in GitHub Desktop.
NSArray和NSMutableArray的相互转换

####NSArray和NSMutableArray的相互转换

  • // NSArray --> NSMutableArray

    NSMutableArray *myMutableArray = [myArray mutableCopy];

  • // NSMutableArray --> NSArray

    NSArray *myArray = [myMutableArray copy];

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment