邮件应用程序如何在编辑模式下禁用 UISearchBar?

Jam*_*mes 3 iphone uisearchbar uisearchdisplaycontroller ios

使用 aSearchDisplayController并找不到任何可以实现此目的的方法?

Dan*_*iel 5

切换到编辑模式时试试这个:

self.searchDisplayController.searchBar.userInteractionEnabled = NO;
self.searchDisplayController.searchBar.alpha = .5;
Run Code Online (Sandbox Code Playgroud)

反向:

self.searchDisplayController.searchBar.userInteractionEnabled = YES;
self.searchDisplayController.searchBar.alpha = 1.0;
Run Code Online (Sandbox Code Playgroud)

您还可以为 alpha 更改设置动画以获得额外的信用:)