How to associate CSV file to my app in iOS 7

后端 未结 1 482
闹比i
闹比i 2021-02-15 17:44

Good day, everyone.

I followed these two tutorials line by line, try to associate my app to the csv file (email app attachment), but I after I added these down below cha

1条回答
  •  不思量自难忘°
    2021-02-15 18:17

    You're missing the UTI type in your CFBundleDocumentTypes definition:

    CFBundleDocumentTypes
    
        
            CFBundleTypeName
            CSV Document
            LSHandlerRank
            Owner
            CFBundleTypeRole
            Viewer
            LSItemContentTypes
            
                
            
        
    
    

    should be:

    CFBundleDocumentTypes
    
        
            CFBundleTypeName
            CSV Document
            LSHandlerRank
            Owner
            CFBundleTypeRole
            Viewer
            LSItemContentTypes
            
                Damian-s.${PRODUCT_NAME:rfc1034identifier}
            
        
    
    

    0 讨论(0)
提交回复
热议问题