For non-jailbreak iPhones, is there a way to let your program load when the phone starts? And is there a way to schedule application startup at specific times?
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
相关文章
- 现在使用swift开发ios应用好还是swift?
- boot 多数据源 java 程序包不存在
- UITableView dragging distance with UIRefreshContro
- Could I create “Call” button in HTML 5 IPhone appl
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- Unable to process app at this time due to a genera
- Swift - hide pickerView after value selected
Nope, thats not possible. The only thing that might help you to launch an application at a specific time is a
UILocalNotification
but it only allows fixed times and not relative ones like "two seconds after XY" and it isn't guaranteed to really start the app because it depends on user input.