For some reason, the button initialized in the addBook method of my viewController won\'t respond to touches. The selector I\'ve assigned to it never triggers, nor does the UICo
THe UIScrollView might be catching all the touch events.
UIScrollView
Maybe try a combination of the following:
_scrollView.delaysContentTouches = NO; _scrollView.canCancelContentTouches = NO;
and
bookView.userInteractionEnabled = YES;