This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"title": "Phone", | |
"subs": [ | |
{ | |
"id": 157291, | |
"title": "Cell Phone Service" | |
}, | |
{ | |
"id": 524624, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
open class AsyncOperation: Operation { | |
public enum State: String { | |
case Ready, Executing, Finished | |
fileprivate var keyPath: String { | |
return "is" + rawValue | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface UserModel : NSObject | |
@property (copy, nonatomic) NSString *name; | |
@property (copy, nonatomic) NSNumber *age; | |
@end |
NewerOlder