BTUIKCardExpiryFormat
Objective-C
@interface BTUIKCardExpiryFormat : NSObject
@property (nonatomic, copy) NSString *value;
@property (nonatomic, assign) NSUInteger cursorLocation;
@property (nonatomic, assign) BOOL backspace;
- (void)formattedValue:(NSString * __autoreleasing *)value cursorLocation:(NSUInteger *)cursorLocation;
@end
Swift
class BTUIKCardExpiryFormat : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
@property (nonatomic, copy) NSString *value
Swift
var value: String! { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic) NSUInteger cursorLocation
Swift
var cursorLocation: UInt { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic) BOOL backspace
Swift
var backspace: Bool { get set }
-
Undocumented
Declaration
Objective-C
- (void)formattedValue:(NSString * __autoreleasing *)value cursorLocation:(NSUInteger *)cursorLocation;
Swift
func formattedValue(_ value: AutoreleasingUnsafeMutablePointer<NSString?>!, cursorLocation: UnsafeMutablePointer<UInt>!)