ko1o / PYSearch

🔍 An elegant search controller which replaces the UISearchController for iOS (iPhone & iPad) .
MIT License
3.83k stars 752 forks source link

更新到最新版之后,搜索时<取消>按钮不见了,变成了... #127

Closed xygkevin closed 6 years ago

xygkevin commented 6 years ago

更新到最新版之后,搜索时<取消>按钮不见了,变成了...

ko1o commented 6 years ago

@Starryxu 请提供下 系统版本号 和 模拟器型号

xygkevin commented 6 years ago

模拟器没有问题,实在真机上面,iPhone 7 Plus iOS 11.2 bate

xygkevin commented 6 years ago

https://pan.baidu.com/s/1nvkPD8X

ko1o commented 6 years ago

@Starryxu 这样的话 建议在源码里面修改下取消按钮的宽度即可,我这边没有真机 也不方便调试!

ko1o commented 6 years ago

@Starryxu 或者你可以更新到最新版,然后通过设置以下操作进行按钮宽度设置

    UIButton *cancelButton = searchViewController.cancelButton.customView;
    cancelButton.py_width = 88;
xygkevin commented 6 years ago

OK, 已经改成了cancelButton.py_width += 10 测试没有问题

ko1o commented 6 years ago

👌