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; | |
typedef NS_ENUM(unichar, EncodedType) { | |
TypeChar = 'c', | |
TypeInt = 'i', | |
TypeShort = 's', | |
TypeLong = 'l', // note long encodes to q on 64 bit | |
TypeLongLong = 'q', | |
TypeUnsignedChar = 'C', | |
TypeUnsignedInt = 'I', |
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; | |
@import ObjectiveC.runtime; | |
typedef NS_ENUM(char, SetterType) { | |
Assign, Strong, Weak, Copy | |
}; | |
@interface ClassProperty : NSObject |
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
<? | |
DEFINE('BASE_PATH', '.'); | |
//relative to where you are running this script from. All paths below are relative to this | |
DEFINE('P12_FILE', 'My Certificate.p12'); | |
//your Pass Certificate, exported from Keychain Access as a P12 file | |
DEFINE('P12_PASSWORD', ''); | |
//if you exported your P12 with a password, enter it here |