In iOS 7, I show actionSheet by \"showFromRect\":
[actionSheet showFromRect:rect inView:view animated:YES];
But in iOS 8, this doesn\'t wor
I found out the point is in iOS 7, you show actionSheet
in a new window actually when using "showFromRect: inView:"
;
But in iOS 8 you show the actionSheet
just on the view you send in parameters.
So the solution is to send
self.superView
[actionSheet showFromRect:rect inView:[self.superView] animated:YES];
Me and my colleague figured it out by randomly trying.