beryu/CustomizableActionSheet

Actionsheet under tabbar

Closed this issue · 2 comments

Hi, awesome project, but the action sheet goes under tabbar.

beryu commented

Thank you for reporting.

CustomizableActionSheet#showInView can be specified a view for putting Action sheet.
If you are developing "Tabbed Application", Please get view with self.tabBarController?.view on your ViewController, and specify it to CustomizableActionSheet#showInView.

For example:

if let view = self.tabBarController?.view {
  let actionSheet = CustomizableActionSheet()
  actionSheet.showInView(view , items: items)
}
beryu commented

I will close this issue.