于今腐草无萤火,终古垂杨有暮鸦。这篇文章主要讲述检查更新可用的App Store相关的知识,希望能为你提供帮助。
任何人都知道是否存在某种方法来检查是否存在App Store上的可用更新?
我想通知用户我的应用程序上的新更新开始...
谢谢
答案- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[[ATAppUpdater sharedUpdater] showUpdateWithConfirmation];
// 1 line of code
/////////////////////// OR ///////////////////////
[[ATAppUpdater sharedUpdater] showUpdateWithForce];
// 1 line of codereturn YES;
}
代理方法:
- (void)appUpdaterDidShowUpdateDialog;
- (void)appUpdaterUserDidLaunchAppStore;
- (void)appUpdaterUserDidCancel;
另一答案例如https://itunes.apple.com/lookup?id=441252681在json响应中,
"info"
字段是您想要的,您可以免费更新它!See the official documentation here.
另一答案http://www.binpress.com/c/615/6592[您也可以在推送更新时使用自己的通知消息,而不是使用自动检查(Binpress上提供,从此发布起也是免费的)]
http://www.binpress.com/c/662/6592
【检查更新可用的App Store】注意:我与Binpress OP没有任何关系,也没有收到Binpress OP的付款/补偿的信息>
另一答案None另一答案None
推荐阅读
- App Store拒绝-内存弹出窗口
- Application didFinishLaunchingWithOptions或applicationDidBecomeActive
- 如何在运行时检查Android中Edittext / TextView的textallcaps是true / false()
- Android中EditText的掩码
- 多行中的Edittext与Android中的actionDone问题[重复]
- xamarin android c#Edittext自动滚动到底部
- 停止setText()在EditText上显示Android软键盘[复制]
- Xamarin.Android EditText事件未在设备上触发
- Android Soft Keyboard在重新打开时隐藏EditText