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 ZTSCameraControllerHelper () | |
@property (nonatomic, assign, getter = isIdleTimerDisabled) BOOL idleTimerDisabled; | |
@end | |
@implementation ZTSCameraControllerHelper | |
+ (instancetype)sharedInstance { | |
static ZTSCameraControllerHelper *instance; | |
static dispatch_once_t onceToken; | |
dispatch_once(&onceToken, ^{ |
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)debugQuickLookObject { | |
NSUInteger width = 100 + (([self hash] >> 4) & 0xFF); | |
NSUInteger height = 100 + (([self hash] >> 8) & 0xFF); | |
return [NSURL URLWithString:[NSString stringWithFormat:@"http://placekitten.com/%tu/%tu", width, height]]; | |
} |
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 mock = mockClass([NSProcessInfo class]); | |
[mock processInfo]; | |
[verify(mock) processInfo]; |
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
Class mock = mockClass([NSProcessInfo class]); | |
[mock processInfo]; | |
[verify(mock) processInfo]; |
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 Calculator : NSObject | |
- (NSNumber *)methodA; | |
- (NSNumber *)methodB; | |
@end | |
@implementation Calculator | |
- (NSNumber *)methodA { | |
return [self methodB]; | |
} | |
- (NSNumber *)methodB { |
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
# You can use lookup mode to retrieve your app’s current metadata. | |
# Lookup mode will create an App Store package at the set destination. | |
# The package name will be the app's SKU with the .itmsp extension. | |
# For example, if your app’s SKU is “myapp1” on iTunes Connect, | |
# your filename would be myapp1.itmsp. The metadata.xml file within | |
# the App Store package contains the app's metadata. | |
iTMSTransporter -m lookupMetadata | |
-u USERNAME -p PASSWORD | |
-vendor_id APP_SKU -subitemtype [InAppPurchase | GameCenterLeaderboard | GameCenterAchievement] |
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
func memoize<T: Hashable, U>( body: ((T)->U, T)->U ) -> (T)->U { | |
var memo = Dictionary<T, U>() | |
var result: ((T)->U)! | |
result = { x in | |
if let q = memo[x] { return q } | |
let r = body(result, x) | |
memo[x] = r | |
return r | |
} | |
return result |
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
#import <Foundation/Foundation.h> | |
@interface WMLPushNotificationRegistrationService : NSObject | |
+ (instancetype)sharedInstance; | |
@property (nonatomic, readonly, getter=isRegisteredForPushNotifications) BOOL registeredForPushNotifications; | |
/** | |
* Must be called every app startup, once got user's permission to send push notificaitons |
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
let str: String | |
dispatch_sync(dispatch_get_global_queue(QOS_CLASS_UTILITY, 0)) { // Variable 'str' used before being initialized | |
str = "Hello" | |
} | |
print(str) // Variable 'str' used before being initialized |
OlderNewer