KyoheiG3 / SimpleAlert

Customizable simple Alert and simple ActionSheet for Swift
MIT License
398 stars 45 forks source link

Long title is not fully shown in some languages #47

Closed yshrkt closed 1 year ago

yshrkt commented 2 years ago

When sets long text to title, title is not fully shown in some languages.

Example code

let alert = CustomAlertController(
    title: "삭제하시겠습니까? 삭제하시겠습니까?",
    message: "이 작업은 취소할 수 없습니다. 이 작업은 취소할 수 없습니다.",
    style: .alert
)
alert.addAction(.init(title: "OK", style: .default))

self.present(alert, animated: true)

Results

Default Custom with attributed string
Simulator Screen Shot - iPhone 11 Pro - 2022-08-16 at 15 53 21 Simulator Screen Shot - iPhone 11 Pro - 2022-08-16 at 15 53 54