Whatsapp link on products?

后端 未结 4 1025
离开以前
离开以前 2021-02-13 18:41

For the iPhone Apps, is it possible to have a Whatsapp link on products? Once link it would send a message to my mobile number through whatsapp. Please advice.

4条回答
  •  清酒与你
    2021-02-13 19:07

    You do it either of the method as tafh suggested which is custom method or as an iOS app developer I would suggest you to go with document interaction controller, initialize a UIDocumentInteractionController. These both with help you manage interactions. Check the link below for more information.

      (UIDocumentInteractionController *) setupControllerWithURL: (NSURL) fileURL
            usingDelegate: (id ) interactionDelegate {
    
        UIDocumentInteractionController *interactionController =
            [UIDocumentInteractionController interactionControllerWithURL: fileURL];
        interactionController.delegate = interactionDelegate;
    
        return interactionController;
    }
    

    Here

提交回复
热议问题