Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Safer Objective-C

Safer Objective-C

Few tips on how to make your Objective-C code safer at compile time.

Błażej Biesiada

January 27, 2014
Tweet

More Decks by Błażej Biesiada

Other Decks in Programming

Transcript

  1. NSNull NSDictionary *dict; dict = @{@"key" : [NSNull null]}; !

    id val = dict[@"key"]; [val description];
  2. Safer NSNull NSDictionary *dict; dict = @{@"key" : [EXTNil null]};

    ! id val = dict[@"key"]; [val description];