SimpleAlert icon indicating copy to clipboard operation
SimpleAlert copied to clipboard

Customizable simple Alert and simple ActionSheet for Swift

Results 6 SimpleAlert issues
Sort by recently updated
recently updated
newest added

When sets long text to title, title is not fully shown in some languages. ### Example code ```swift let alert = CustomAlertController( title: "삭제하시겠습니까? 삭제하시겠습니까?", message: "이 작업은 취소할 수...

When installed using by swift package manager, build is successful but crash caused by failed to load nib at running.

When show a very long content with buttons, content appeared in scrollable view but buttons get hidden and there is no way to dismiss the alert.

Is it possible to add popover support for iPad? Since following code shows empty popover with white area at the bottom. ``` swift if alert.respondsToSelector("popoverPresentationController") { alert.modalPresentationStyle = .Popover let...

enhancement