Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AM 使用UIActivityIndicator视图作为UITableViewFooter,在模拟器中工作正常,但在设备中显示不同的行为,认为这是由于操作系统更改而发生的。有时它适合屏幕的宽度并且看起来被放大了,在其他情况下只是消失了,有什么解决办法吗?
UIActivityIndicator
UITableViewFooter
自己找到了原因,将 UIActivityIndicator 添加为页脚会导致某些设备出现问题,因此如果您仍需要显示页脚,最好使用诸如“正在加载...”之类的文本。否则向 UITableView 添加一个额外的单元格并将 UIActivityIndicator 添加到最后细胞。在我的情况下,错误是在 3GS 中测试时,在其他设备中没有问题。
问候