//跳转到应用页面 NSString *str = [NSString stringWithFormat:@"http://itunes.apple.com/us/app/id%d",appid];  [[UIApplication sharedApplication] openURL:[NSURL urlWithString:str]];   //跳转到评价页面 NSString *str = [NSString stringWithFormat: @"itms-apps:…
OK,有日子没写iOS开发的相关文章啦,主要是最近的精力都没在这上面,不过既然产品已经快要出来了,就有必要了解一下各种证书啥的(众所周知iOS的一堆证书可是很让人头大呀),最近确实被这个搞得头大,然后就决定参考网上的一些资料,进行一下整理,留作一个备份. 内容参考自:苹果所有常用证书,appID,Provisioning Profiles配置说明及制作图文教程 理解Certificate.App Id.Identifiers 和 Provisioning Profile 在我们平常的开发过程中,…
第1章 开发准备 1.1 iOS 10新特性简述 1.1.1 新增触觉反馈编程接口 1.1.2 SiriKit框架的开放 1.1.3 引入Messages App 1.1.4 通知框架的整合与扩展 1.2  熟悉iOS开发环境 1.2.1 安装Xcode开发工具 1.2.2 了解Xcode开发工具主界面 1.2.3 Xcode开发工具的使用技巧及常用快捷键 1.3  创建第一个iOS项目 1.4  使用Git进行项目版本管理 1.4.1 Git与Github简介 1.4.2 注册GitHub会员…
1.developer.apple.com 申请开发者账号 2.根据API Cloud创建证书: http://docs.apicloud.com/Dev-Guide/iOS-License-Application-Guidance a.certificate证书 只用创建一个certificate就可以了 所有的APP都可以用这个 推送发布证书,只需要在极光推送上面用,apicloud 上面不需要 b.Identifiers: (app id) 不同的APP创建不同的APP IDS c.然后创…
在APP内给其他APP做推广,经常用到在应用内弹出应用的APP #import <StoreKit/SKStoreProductViewController.h> 设置代理:<SKStoreProductViewControllerDelegate> - (void)buttonDidClick:(id)sender { //首先实例化一个VC SKStoreProductViewController *storeVC = [[SKStoreProductViewControlle…
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption…
iOS应用跳转到App Store评分 1.跳转到应用评价页 NSString *urlStr = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%@&pageNumber=0&sortOrdering=2&mt=8", APPID]; […
iOS利用Application Loader打包提交到App Store时遇到错误: The filename 未命名.ipa in the package contains an invalid character(s). The valid characters are:A-Z,a-z,0-9,dash,period,underscore,but the name cannot start with a dash,period,or underscore. 解决方法:在Archive之后得…
//跳转到app在AppStore页面 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@", kPopolookAppleId]]]; //跳转到评分        NSString *str = [NSString stringWithFormat:@"itms-a…
使用下面的连接即可跳转到App Store itms-apps://itunes.apple.com/cn/app/id***********                  其中***********指的是你的APPID 如何找到你的APPID如图 1   登录苹果官网    点击account 2   登录开发者账号 3    点击iTunes 4.点击 go to itunes .. 5.   点击APP 6    找到你的APP 7  在APP信息里找到APPID…