我试图在googleMapView上添加UiButton。
我想要另一个按钮来打开我的Google地图应用,以便从我的应用导航。
我尝试以编程方式添加按钮并使用xib ..它无法以两种方式工作。 (没有显示)。
你们对它有任何想法吗?我使用swift
答案 0 :(得分:2)
尝试将按钮添加为子视图。
创建如下按钮:
<classifier>
并将其作为子视图添加到let button = UIButton()
button.backgroundColor = .blue
button.frame = CGRect(x: 0, y: 0, width: view.frame.width, height: 50)
button.setTitle("My Button", for: .normal)
,如下所示:
googleMapView