代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
ObjC
】
跳转AppStore 应用内和直接跳转
作者:
韩万杰
/ 发布于
2015/9/14
/
1536
#import "ViewController.h" #import <StoreKit/StoreKit.h> @interface ViewController ()<SKStoreProductViewControllerDelegate> @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; //第一种方法 直接跳转 UIButton *btn = [[UIButton alloc]initWithFrame:CGRectMake(100, 100, 100, 50)]; btn.backgroundColor = [UIColor redColor]; btn.tag = 1; [btn addTarget:self action:@selector(btn:) forControlEvents:UIControlEventTouchUpInside]; //第二中方法 应用内跳转 UIButton *btnT = [[UIButton alloc]initWithFrame:CGRectMake(100, 100, 100, 50)]; btn.backgroundColor = [UIColor redColor]; btnT.tag = 2; [btnT addTarget:self action:@selector(btn:) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:btn]; [self.view addSubview:btnT]; } - (void)btn:(UIButton *)btn{ if (btn.tag == 1) { //第一种方法 直接跳转 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps://itunes.apple.com/app/id1018221712"]]; }else{ //第二中方法 应用内跳转 //1:导入StoreKit.framework,控制器里面添加框架#import <StoreKit/StoreKit.h> //2:实现代理SKStoreProductViewControllerDelegate SKStoreProductViewController *storeProductViewContorller = [[SKStoreProductViewController alloc] init]; storeProductViewContorller.delegate = self; //加载一个新的视图展示 [storeProductViewContorller loadProductWithParameters: //appId @{SKStoreProductParameterITunesItemIdentifier : @"1018221712"} completionBlock:^(BOOL result, NSError *error) { //回调 if(error){ NSLog(@"错误%@",error); }else{ //AS应用界面 [self presentViewController:storeProductViewContorller animated:YES completion:^{ } ]; } }]; } }
试试其它关键字
跳转AppStore
AppStore
同语言下
.
根据生日计算星座
.
精简的实现一个内存池
.
iOS索引搜索核心代码
.
iOS 搜索框
.
文件操作
.
UIWebView 加载本地网页
.
取消导航条对视图的影响
.
利用终端显示 隐藏文件
.
更改导航条背景颜色
.
iOS 字体斜体
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
韩万杰
贡献的其它代码
(
13
)
.
获取当前手机系统语言
.
获取手机通讯录 iOS去除数字以外的所有字符
.
iOS 搜索框
.
GLUT示例
.
UIWebView 加载本地网页
.
取消导航条对视图的影响
.
利用终端显示 隐藏文件
.
更改导航条背景颜色
.
iOS 字体斜体
.
获取app版本号 plist文件
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3