Could not inset legal attribution from corner 4 swift

后端 未结 5 1131
花落未央
花落未央 2021-02-13 13:07

I am new to Xcode and mobile app. I am doing an app to find the current location. I tested it on the simulator and got this message in the console. \"Could not inset legal attri

5条回答
  •  走了就别回头了
    2021-02-13 13:26

    You have not typed in an opening curly bracket for your MapVC Class:

    your code:

    class MapVC: UIViewController
    

    to fix:

    class MapVC: UIViewController {
    

提交回复
热议问题