1. iOS7以后app内跳转至app store相应页面只能使用如下链接,其中“xxxxxxxxx”替换为此应用在iTunes Connect生成时获得的的app id1 [[UIApplication sharedApplication] openURL:[NSURL URLWithString...
分类:
其他好文 时间:
2014-12-31 19:46:21
阅读次数:
181
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:_appStoreURL]];同样一行代码,在ios7.1的模拟器无法调用safari,6.1的模拟器就行。查了半天资料也没有任何头绪。在ios7.1.2的真机上测试也是可...
分类:
其他好文 时间:
2014-12-30 18:55:48
阅读次数:
170
cocos2d-js-v3.2-rc0cc.director.end();//退出appcc.Application.getInstance().openURL("http://www.baidu.com");//openurl
前言:在IOS开发中,有时候我们会需要用到邮件发送的功能。比如,接收用户反馈和程序崩溃通知等等。其实这个功能是很常用的,因为我目前就有发送邮件的开发需求,所以顺便整理下IOS发送邮件的方法。IOS原生自带有两种发送邮件的方法,另一种是使用第三方库:1)openURL(原生)..
分类:
移动开发 时间:
2014-12-29 12:22:48
阅读次数:
262
前言:在IOS开发中,有时候我们会需要用到邮件发送的功能。比如,接收用户反馈和程序崩溃通知等等。其实这个功能是很常用的,因为我目前就有发送邮件的开发需求,所以顺便整理下IOS发送邮件的方法。IOS原生自带有两种方法发送邮件的方法,另一种是使用第三方库:1)openURL(原生) ——用户体验较...
分类:
移动开发 时间:
2014-12-25 16:19:00
阅读次数:
681
一,直接调用safari打开url[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.2cto.com/kf/201211/171644.html"]]; 二,通过webView设置代理在内部打开 ...
分类:
移动开发 时间:
2014-12-19 11:43:12
阅读次数:
343
NSMutableString * str=[[NSMutableString alloc] initWithFormat:@"telprompt://%@",@"152XXXX2761"];[[UIApplication sharedApplication] openURL:[NSURL URLW...
分类:
移动开发 时间:
2014-12-15 20:15:46
阅读次数:
117
打电话:建议用telprompt://而不用tel://,因为前者有拨打前提示,且拨打完成后回到原先应用界面。...
分类:
移动开发 时间:
2014-12-12 16:45:41
阅读次数:
202
1、调用 自带mail
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://admin@hzlzh.com"]];
2、调用 电话phone
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://80...
分类:
移动开发 时间:
2014-12-12 11:49:32
阅读次数:
220
最近要写Excel插件,因为VB6比较熟,于是选了VB.NET,比较容易上手些。
采用WebBrowser打开网页。涉及到网页完成一系列操作后,点确定后通知插件已经完成了操作。
测试代码如下:
vb.net
Imports System.Runtime.InteropServices
Public Class Form1
Public Sub openUrl(ByVal url...
分类:
Web程序 时间:
2014-12-10 16:26:06
阅读次数:
152