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.
我在我的应用程序中的 iphone 中查看触摸有问题,我的应用程序 的底部没有执行以下操作。
这是两张图片,所以你可以得到这个想法。我无法与这个底部进行交互。在我的应用程序的所有视图中。 有人面临这个问题吗? 提前致谢
好的,我解决了问题
如果有人面临同样的问题,我只需处理以下事项:
1) 使父视图的 Autosizing 属性为 true,如下所示:
您可以在尺寸检查器中找到它。 2)对于子视图,只需执行此操作。
self.vwTextFont.clipsToBounds=YES;
这vwTextFont是我tableview的,正如您在上图中的问题部分所见,它的父视图是vwTabBar. 所以我执行第一步 tovwTabBar和第二步 to vwTextFont。 希望这会有所帮助。
vwTextFont
tableview
vwTabBar