- 浏览: 112349 次
- 性别:
- 来自: 上海
文章分类
最新评论
-
huaweiAt_888:
再cmd运行么?我的怎么没有?
SVN -
johnie_sheng:
用个条件语句,比如说#if TARGET_OS_IPHONEA ...
编译错误:expected specifier-qualifier-list before ‘class' -
ann_iphone:
能不能请教一下博主如何让AVCaptureSession类在s ...
编译错误:expected specifier-qualifier-list before ‘class' -
ext:
还是3.2的xcode 好哈一个rename 搞定。。
Xcode修改项目名 -
zhoujj303030:
看这样的文章对我来说有压力啊!不过还是勉强看下去!
如何避免SVN运行时老是输入密码
In an earlier post
I talked about how to launch the browser from within an iPhone application using the UIApplication:openURL:
method.
It is also possible to use this same technique to launch other applications on the iPhone that are very useful.
Examples of some of the key applications that you can launch via URL are:
- Launch Google Maps
- Launch Apple Mail
- Dial a Phone Number
- Launch the SMS Application
- Launch the Browser
- Launch the AppStore
Launch Google Maps
The URL string for launching Google Maps with a particular keyword follows this structure:
http://maps.google.com/maps?q=${QUERY_STRING}
The only trick to this is to ensure that the value for the ${QUERY_STRING} is properly URL encoded. Here is a quick example of how you would launch Google Maps for a specific address:
1 2 3 4 5 6 7 8 9 10 11 |
// Create your query ... NSString * searchQuery = @ "1 Infinite Loop, Cupertino, CA 95014" ; // Be careful to always URL encode things like spaces and other symbols that aren't URL friendly searchQuery = [ addressText stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding] ; // Now create the URL string ... NSString * urlString = [ NSString stringWithFormat: @ "http://maps.google.com/maps?q=%@" , searchQuery] ; // An the final magic ... openURL! [ [ UIApplication sharedApplication] openURL: [ NSURL URLWithString: urlText] ] ; |
Launch Apple Mail
Also very useful, is the ability to enable a user to quickly send an email by launching the email client in compose mode and the address already filled out. The format of this URI should be familiar to anyone that has done any work with HTML and looks like this:
mailto://${EMAIL_ADDRESS}
For example, here we are opening the email application and filling the “to:” address with info@iphonedevelopertips.com :
[ [ UIApplication sharedApplication] openURL: [ NSURL URLWithString: @ "mailto://info@iphonedevelopertips.com" ] ] ;
Dial a Phone Number (iPhone Only)
You can use openURL:
to dial a phone number. One
advantage this has over other URLs that launch applications, is that the
dialer will return control back to the application when the user hits
the “End Call” button.
Anyone familiar with J2ME or WML will find this URL scheme familiar:
tel://${PHONE_NUMBER}
Here is an example of how we would dial the number (800) 867-5309:
1 |
[ [ UIApplication sharedApplication] openURL: [ NSURL URLWithString: @ "tel://8004664411" ] ] ; |
NOTE When providing an international number you will need to include the country code.
Launch the SMS Application
Also not supported by the iPod Touch, is the ability to quickly setup the SMS client so that your users can quickly send a text message. It is also possible to provide the body of the text message.
The format looks like this:
sms:${PHONENUMBER_OR_SHORTCODE}
NOTE: Unlike other URLs, an SMS url doesn’t use the “//” syntax. If you add these it will assume it is part of the phone number which is not.
1 |
[ [ UIApplication sharedApplication] openURL: [ NSURL URLWithString: @ "sms:55555" ] ] ; |
NOTE: According to the official SMS specification, you should be able to send a body as well as the phone number by including “?body=” parameter on the end of the URL … unfortunately Apple doesn’t seem to support this standard.
Lauching Browser
Here is a simple example of how to open safari with a specific URL:
1 2 |
NSURL * url = [ NSURL URLWithString: @ "http://www.iphonedevelopertips.com" ] ; [ [ UIApplication sharedApplication] openURL: url] ; |
Launching the AppStore
Finally, it is worth noting that you can launch the AppStore and have the "buy" page of a specific application appear. To do this, there is no special URL scheme. All you need to do is open up iTunes to the application you want to launch; right-click on the application icon at the top left of the page; and select Copy iTunes Store URL .
The URL will look something like this:
http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=291586600&mt=8
Launching the AppStore URL is exactly the same as you would launch the browser. Using the link above, here is an example of how we would launch the AppStore:
1 2 |
NSURL * appStoreUrl = [ NSURL URLWithString: @ "http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=291586600&mt=8" ] ; [ [ UIApplication sharedApplication] openURL: appStoreUrl] ; |
发表评论
-
iOS 应用程序目录结构
2016-03-16 13:36 425iOS应用程序采用的是沙盒原理设计,普及一下知识:沙盒是在 ... -
Effective ObjectiveC 2.0读书笔记第一章:熟悉ObjectiveC
2016-01-25 10:51 411Objective-C通过一套全新语法,在C语言基 ... -
Swift学习
2016-01-24 11:08 484从今天开始系统学习Swift,并且把学习的源代码放在Git ... -
iOS的UILable一行显示多样字符
2016-01-22 15:45 403要现实AABBBBB的效果: NS ... -
拉伸设置按钮的图片
2016-01-22 11:12 508为了减小应用的大小,可以拉伸的图片是没有必要放全图的。 ... -
拉伸设置按钮的图片
2016-01-22 11:06 0为了减小应用的大小,可以拉伸的图片是没有必要放全图的。 ... -
拉伸设置按钮的图片
2016-01-22 11:06 0为了减小应用的大小,可以拉伸的图片是没有必要放全图的。 下 ... -
10大iOS开发者最喜爱的类库
2013-08-13 14:38 1413库是开发的根本,从页 ... -
做了款数独应用来练练脑子
2013-06-11 20:53 711<!--?xml version="1.0& ... -
一个简单的Cocos2d例子
2012-12-10 15:57 943一个简单的cocos2d的例子,一个自动旋转的球上面趴着五只小 ... -
AVAudioPlayer 简单例子
2012-12-10 15:34 707包括循环播放以及背景播放,满足一般朋友的需求。 包含一 ... -
UIScrollView的性能问题
2012-12-10 15:32 884Coming Soon ...... -
CGGeometry中的方法
2011-12-07 11:43 3294CGGeometry中的方法 Creating ... -
在一个应用程序中其他的应用,比如说网站,App Store等等
2011-07-13 10:27 974在一个应用程序中启动其他的服务是用方法: UIApplicat ... -
是否该用 Core Data?
2011-06-29 11:39 1760Core Data 是 Cocoa 里面一套非常受欢迎 ... -
实用iOS Apps
2011-05-13 16:45 8081。免费电话 Viber 2。360拍照 Photosynt ... -
iPhone-NSAssert使用
2011-05-12 20:11 2440调试cocoa程序在程序出 ... -
Workspace & static library
2011-04-28 19:04 901http://blog.boreal-kiss.net/201 ... -
constrainedToSize计算String的height
2011-03-23 17:53 1394CGSize titleSize = [aString siz ... -
Programming with Subversion, Trac and Buildbot
2011-03-21 20:41 828http://olivier.ramonat.free.fr/ ...
相关推荐
【AppStore_应用商店】是针对移动设备应用分发的一款软件平台,主要功能是提供一个集中的地方,让用户能够方便地查找、下载和管理应用程序。在这个项目中,开发者已经实现了一些核心特性,如断点下载、下载速度监测...
在iOS开发中,有时我们需要在应用内部实现一个功能,让用户可以直接点击按钮跳转到App Store,以便查看、评价或下载我们的应用。这个“iOS应用源码之跳转到App Store的小案例”就是一个演示如何实现这一功能的代码...
"ios跳转appstore评论,判断是否评论"这个主题涉及到的是如何在iOS应用内部实现一个功能,该功能不仅能够直接链接到App Store以便用户撰写评论,而且还能智能地检测用户上次提交评论的时间,确保不会过于频繁地打扰...
`nicklockwood-iRate`是由Nick Lockwood开发的一个流行库,用于自动处理在App Store中请求用户评价。该库考虑了多种因素,如用户使用应用的次数、时间以及他们是否已经给出过评价,以确定最佳的提示时机。它的版本号...
【标题】"IOS应用源码Demo-跳转到app store的小案例-毕设学习.zip" 提供了一个关于iOS应用程序开发的实例,特别是涉及到如何在iOS应用中实现跳转到App Store的功能。这对于iOS开发者,尤其是那些正在准备毕业设计或...
这个过程可能涉及到在App Store Connect网站上创建和下载API密钥,然后将其安全地存储在应用的配置文件中。SDK通常会提供一个方法来加载这些凭据,并自动附加到API请求上。 在实际开发中,Swift SDK可以用于各种...
在AppStore中,当你点击一个应用时,会出现一个卡片式的详情视图从底部滑动上来,展示应用的详细信息。这种动画不仅提供了一个清晰的视觉指示,告诉用户发生了什么,还增加了操作的趣味性。要实现这样的效果,开发者...
标题提到的"Swift-A简单地调用一个方法即可检测APP的新版本特性",指的是通过编写简洁的代码来实现检查应用程序是否需要更新。下面我们将深入探讨如何在Swift中实现这个功能。 首先,我们需要理解iOS应用的版本检查...
标题中的“自己做的第一个手机端安卓app商城项目”揭示了这个项目是一个个人开发的安卓应用程序,专注于移动端的购物体验。这表明开发者可能掌握了基础到中级的Android应用开发技能,包括UI设计、网络请求、数据存储...
在本资源中,我们主要关注的是使用C#语言开发一个简单的移动应用程序。C#(读作"C sharp")是一种面向对象的编程语言,由微软公司为.NET框架开发,广泛应用于桌面应用、游戏开发以及移动应用等领域。C/S(Client/...
为了在App启动时展示不同的图标,你可以创建一个LaunchScreen storyboard,它会在应用程序启动时显示。在这个LaunchScreen中,你可以设计一个动态加载图标的逻辑,比如从网络获取或者本地数据库读取新的图标图片。 ...
在微信小程序开发中,结合mpvue和vuex构建应用时,可能会遇到一个问题,即vuex的辅助函数mapState、mapGetters无法正常使用。这些问题通常源于mpvue与vue-cli的常规项目配置有所不同,使得store对象没有被正确地注入...
这里提到的"IOS封装网址APP源码"就是这种技术的具体实践,它允许开发者将一个Web页面(通常是HTML5应用)打包成一个可以在iOS设备上运行的应用程序。 首先,我们要理解"WebView"的概念。WebView是iOS SDK中的一种...
在iOS平台上,UrlSchemes是一种实现应用程序间交互(App-to-App interaction)的重要技术。它允许一个应用通过特定的URL模式启动另一个已安装的应用。在本文中,我们将深入探讨如何利用UrlSchemes来判断iOS设备上...
在iOS系统中,应用之间的交互是一项关键功能,它允许用户在不同的应用程序之间切换,实现数据共享和服务集成。这种技术被称为程序间通讯(Inter-App Communication),是iOS开发中的一个重要概念。苹果公司为了维护...
5. **配置应用商店链接**:对于未安装APP的情况,需要提前准备好在应用商店的下载链接,通常是Google Play或Apple App Store的链接。当检测到APP未安装时,H5页面会自动重定向到这个下载页面。 6. **错误处理**:在...
【标题】"store_v5.zip" 是一个包含Java Web MVC框架构建的网络商城源代码的压缩包。这个项目可能是为了教学、研究或者实际商业应用而设计的,它展现了如何运用MVC模式来开发一个完整的网上商店系统。 【描述】...
标题中的"app-src.rar"表明这是一个包含移动应用源代码的压缩文件,而“_mobile app”则强调这是针对移动设备的应用程序。描述中提到“嵌入式的捕捉程序”,这可能是指该应用程序包含了一些用于捕获数据或用户行为的...
"用最简单的方式来自动构建和发布你的iOS和Android应用程序"这一主题旨在介绍如何利用工具集Fastlane实现这一目标。Fastlane是由Ruby编写的,它允许开发者通过简单的命令行接口来执行复杂的构建、测试和发布任务。 ...
这可能是一个工具或功能,它能够记录并展示应用在网络通信过程中的请求、响应、错误等信息,帮助开发者追踪和分析网络故障。 压缩包中的`bugkit.rtf`文件很可能包含了关于这些调试工具的详细文档或使用指南,例如...