First, I'm setting it after initialization. Then I'm changing it in viewDidLoad method of my subclass. Checking is still turned on and I can't see any of 'outside' area into my image.
RCImageEditorViewController *viewController = [[RCImageEditorViewController alloc] initWithNibName:@"RCImageEditorViewController" bundle:nil];
[viewController setCheckBounds:YES];
// subclass
First, I'm setting it after initialization. Then I'm changing it in viewDidLoad method of my subclass. Checking is still turned on and I can't see any of 'outside' area into my image.
RCImageEditorViewController *viewController = [[RCImageEditorViewController alloc] initWithNibName:@"RCImageEditorViewController" bundle:nil];
[viewController setCheckBounds:YES];
// subclass
(void)viewDidLoad {
[super viewDidLoad];
self.checkBounds = NO;
}