mirror of
https://github.com/samsonjs/samhuri.net-ios.git
synced 2026-03-25 09:25:47 +00:00
17 lines
337 B
Objective-C
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
|