samhuri.net-ios/Pods/libextobjc/extobjc/EXTSelectorChecking.m
2014-10-18 14:19:51 -07:00

17 lines
337 B
Objective-C

//
// EXTSelectorChecking.m
// extobjc
//
// Created by Justin Spahr-Summers on 26.06.12.
// Copyright (C) 2012 Justin Spahr-Summers.
// Released under the MIT license.
//
#import "EXTSelectorChecking.h"
@implementation NSString (EXTCheckedSelectorAdditions)
- (SEL)ext_toSelector {
return NSSelectorFromString(self);
}
@end