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
Ld /Users/admin/Library/Developer/Xcode/DerivedData/ MyApp_Workspace-hcgsxetbpashetfgpkatubdpgmtz/Build/Intermediates.noindex/ MyApp.build/Debug-iphoneos/ MyApp.build/Objects-normal/armv7/ MyApp normal armv7 | |
cd /Users/admin/Documents/workspace/ MyApp/trunk/ MyApp | |
export IPHONEOS_DEPLOYMENT_TARGET=6.0 | |
export PATH="/Volumes/Macintosh HD/Applications/Xcode92.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Volumes/Macintosh HD/Applications/Xcode92.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" | |
/Volumes/Macintosh\ HD/Applications/Xcode92.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch armv7 -isysroot /Volumes/Macintosh\ HD/Applications/Xcode92.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.2.sdk -L/Users/admin/Library/Developer/Xcode/DerivedData/ MyApp_Workspace-hcgsxetbpashetfgpkatubdpgmtz/Build/Products/Debug-iphoneos -L../MyEngine/binaries -L../MyEngine/binaries/Instabug.bundle -L../M |
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 <substrate.h> | |
#import <UIKit/UIKit.h> | |
#import <Foundation/Foundation.h> | |
%hook SBIconView | |
// Hooking an instance method with an argument. | |
- (void)setIsJittering:(BOOL)jittering { | |
[self setAlpha:(jittering ? 0.5 : 1.0)]; | |
} | |
%end |
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/Foundation.h> | |
#import "Contact.h" | |
@interface AddressBookManager : NSObject | |
+ (NSString *)nameForContactWithPhoneNumber:(NSString *)phoneNumber; | |
+ (UIImage *)photoForContactWithPhoneNumber:(NSString *)phoneNumber; | |
@end |