I have an app that would get used by different clients with slight tweaks for each client, including a different icon and launch screen. Is it possible to program the app to grab those images off of a server and use them, or would I need to manually put them into each iteration of the app the normal way?
相关问题
- 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
- xcode 4 garbage collection removed?
- Xcode: Is there a way to change line spacing (UI L
- Unable to process app at this time due to a genera
- Swift - hide pickerView after value selected
It is impossible to change the
App Icon
programmatically using only publicAPI
as well as changelaunch screen
at runtime. You may create some kind of "fake"-launch screen
, that will be the firstUIViewController
in your app and will dismiss automatically short after being presented.