Изменить размер текста UIContextualAction - PullRequest
0 голосов
/ 24 сентября 2018

Как я могу увеличить размер текста на моем UIContextualAction?Вот как я это настроил.

func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
    let action = UIContextualAction(style: .normal, title:  "\u{02606}", handler: { (ac:UIContextualAction, view:UIView, success:(Bool) -> Void) in
        success(true)
    })
    action.backgroundColor = .blue
    return UISwipeActionsConfiguration(actions: [action]) 
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...