I've tried googling this but am still non the wiser as to what the actual problem or solution is. I supplied all the app icon images Xcode was asking for but I'm getting an AppIcon unassigned image compilation message. What do I need to do to remove the warning essage?
相关问题
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
- “Zero out” sensitive String data in Swift
- Get the NSRange for the visible text after scroll
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- Swift - hide pickerView after value selected
- How do you detect key up / key down events from a
- didBeginContact:(SKPhysicsContact *)contact not in
- Attempt to present UIAlertController on View Contr
In my case a created Forms based project auto generates a project structure that refers to an app icon for the "Car" iOS app category: /Users/your_userid/Projects/ProjectName/iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json
I opened that json file and removed the app icon entry that contained an "idiom" entry of "Car". Then the build was successful. Another solution would have been to add an app icon for Car. But my app is not going to be used in a car.
I faced same problem with XCode7 and app icon image, and just Selecting the unassigned asset and pressing delete solved the problem for me.
If you go into the media.xcassets directory in finder you can edit the contents.json file to remove anything without "filename" assigned. For example you would remove:
And that should remove the compiler warnings.
I created the project from Xcode 5 version ,when i build, i received 5 unassigned images... warnings and when i import it into the xcode 7 version , i just received 1 warning, then i delete the unassigned image and build , now all warning removed.