LCCaptchaRequestOptions
Objective-C
@interface LCCaptchaRequestOptions : LCDynamicObject
/**
Width of captcha image, in pixels.
Defaults to 85. Minimum is 85, maximum is 200.
*/
@property (nonatomic, assign) NSInteger width;
/**
Height of captcha image, in pixels.
Defaults to 30. Minimum is 30, maximum is 100.
*/
@property (nonatomic, assign) NSInteger height;
@end
Swift
class LCCaptchaRequestOptions : LCDynamicObject
Undocumented
-
Width of captcha image, in pixels.
Defaults to 85. Minimum is 85, maximum is 200.
Declaration
Objective-C
@property (nonatomic) NSInteger width;
Swift
var width: Int { get set }
-
Height of captcha image, in pixels.
Defaults to 30. Minimum is 30, maximum is 100.
Declaration
Objective-C
@property (nonatomic) NSInteger height;
Swift
var height: Int { get set }