UIActivityViewController & UIDocumentInteractionController not showing options

后端 未结 4 2137
青春惊慌失措
青春惊慌失措 2021-02-08 09:01

I am new to UIActivityViewController and perhaps I am missing a basic understanding. What I am trying to do is attached a csv, xml and vcard file to activity controller and show

4条回答
  •  孤独总比滥情好
    2021-02-08 09:20

    As @rmaddy said, you should use UIDocumentInteractionController to replace UIActivityViewController, just like this:

    UIDocumentInteractionController *dc = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:fileNameStr]];
    [dc presentOptionsMenuFromRect:self.view.bounds inView:self.view animated:YES];
    

提交回复
热议问题