1、如果是在应用内部跳转到Appstore只需执行如下代码 [[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"itms-apps://itunes.apple.com/app/id1061880281"]]; 其中 @" ...
分类:
移动开发 时间:
2016-10-26 13:50:13
阅读次数:
386
NSString转NSURL失败的解决办法 url支持26个英文字母、数字和少数几个特殊字符,因此,对于url中包含非标准url的字符时,就需要对其进行编码。iOS中提供了函数stringByAddingPercentEscapesUsingEncoding对中文和一些特殊字符(下面已证实包含"%" ...
分类:
Web程序 时间:
2016-10-21 00:25:32
阅读次数:
186
一. 程序外调用系统发短信 [[UIApplication sharedApplication]openURL:[NSURL URLWithString:@sms://13888888888]]; 二.程序内调用系统发短信 #import <MessageUI/MessageUI.h> 2)实现代理 ...
分类:
其他好文 时间:
2016-10-11 10:57:43
阅读次数:
133
// 1. URL,确定要访问的网络资源 NSURL *url = [NSURL URLWithString:@"http://192.168.31.2/demo.json"]; // 2. 请求,告诉服务器需要的资源 NSURLRequest *request = [NSURLRequest re ...
分类:
其他好文 时间:
2016-10-02 10:55:06
阅读次数:
176
一:小文件下载 (1)第一种方式(NSData) ```objc //使用NSDta直接加载网络上的url资源(不考虑线程) -(void)dataDownload { //1.确定资源路径 NSURL *url = [NSURL URLWithString:@"http://120.25.226. ...
分类:
移动开发 时间:
2016-09-11 13:00:22
阅读次数:
246
iOS常用的打电话方式第一种:[[UIApplicationsharedApplication]openURL:[NSURLURLWithString:@"tel://1008611"]];第二种:UIWebView*webView;if(webView==nil){webView=[[UIWebViewalloc]init];}NSString*phoneStr=[NSStringstringWithFormat:@"tel://%@",@"1008611"];NSURL*u..
分类:
移动开发 时间:
2016-09-07 16:01:49
阅读次数:
226
一、打开系统的app1、打开日历:if UIApplication.sharedApplication().canOpenURL(NSURL(string:"calshow:”)!) { UIApplication.sharedApplication().openURL(NSURL(string:" ...
分类:
编程语言 时间:
2016-09-06 22:52:34
阅读次数:
898
在相应的代码中写入: 1、调用 电话phone [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://4008008288"]]; 2、调用自带 浏览器 safari [[UIApplication share ...
分类:
其他好文 时间:
2016-09-05 16:53:05
阅读次数:
134
[[UIApplication sharedApplication] openURL:url];通过给url不同的值,可以实现调用系统自带 电话/短信/邮箱/浏览器/... 1、调用 电话phone[[UIApplication sharedApplication] openURL:[NSURL U ...
分类:
移动开发 时间:
2016-08-29 17:32:54
阅读次数:
147
1.打开URL #define PDF_PRODUCT_URL @"http://www.cisdem.com/pdf-password-remover-mac.html" [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:PDF ...
分类:
Web程序 时间:
2016-08-29 09:08:24
阅读次数:
196