我有一个自定义后退按钮,创建为BodyModelBinder
,并插入到UIBarButtonItem
中。我需要将其向左移动一点。我可以移动navigationItem.leftBarButtonItem
的图像,但是按钮的命中区域仍保留在原始位置。
答案 0 :(得分:0)
尝试创建具有所需框架的自定义UIButton,然后创建示例的UIBarButtonItem(customView:UIButton)
let button = UIButton(frame: CGRect(x: 0, y: 0, width: 45, height: 40))
let yourBarButton = UIBarButtonItem(customView: button)