The lower portion of the buttons were not working when I used code like:
[actionsheet showInView:self.view];
It turned out that was because I have tabBar in that bottom area of that View, after I changed code to following it started to work as expected:
[actionsheet showInView:[UIApplication sharedApplication].keyWindow];
