Skip to content

Instantly share code, notes, and snippets.

View isutton's full-sized avatar

Igor Sutton isutton

  • Lemonade
  • Amsterdam
View GitHub Profile
@isutton
isutton / main.m
Created July 9, 2012 08:51
Regular expressions in Objective-C
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[])
{
@autoreleasepool {
NSString *key = @"UINavigationBarTintColor";
NSString *pattern = @"(Color|Font|Height|Width|Size|Origin|Frame)$";
@isutton
isutton / NSString+IARL.h
Created March 14, 2012 22:19
NSString category to return a coordinate from a grid square locator
#import <CoreLocation/CoreLocation.h>
@interface NSString (IARL)
- (CLLocationCoordinate2D)coordinateFromGridSquareLocator;
@end