Dal R. - Building your own team
This file contains 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
- (RACSignal *)localUpdateSignal | |
{ | |
return [[self localBundleUpdateSignal] flattenMap:^RACStream *(NSString *path) | |
{ | |
return [self exerciseUpdateSignalWithBundlePath:path]; | |
}]; | |
} | |
- (RACSignal *)localBundleUpdateSignal |
This file contains 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
id<FBOpenGraphAction> action = (id<FBOpenGraphAction>)[FBGraphObject graphObject]; | |
[action setObject:objectId forKey:@"style"]; | |
[action setObject: @"true" forKey: @"fb:explicitly_shared"]; |
This file contains 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 DateObject : NSObject | |
@property (nonatomic, strong) NSDate *date_UTC; | |
// Wrapper property, strong or weak? | |
@property (nonatomic) NSDate *date; | |
@end | |
@implementation DateObject |