iOS Google Maps textField not Responding

后端 未结 4 635
借酒劲吻你
借酒劲吻你 2020-12-10 19:53
#import \"MyLocationViewController.h\"
#import 


@interface MyLocationViewController ()

@end

@implementation MyLocationViewControll         


        
4条回答
  •  旧时难觅i
    2020-12-10 20:18

    Try

    [self.view addSubview: textField];  
    

    Instead of

    [mapView_ addSubview:textField];  
    

    This may help you.

提交回复
热议问题