第三天 打开地图《苹果iOS实…

本文介绍如何使用iOS开发工具xCode创建一个简单的应用,该应用能够通过Google Maps API打开指定地址的地图视图。教程覆盖了从新建项目到实现按钮点击打开地图的全过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


DAY THREE - OPEN URL

大家一起来建立一个 iPhone app,给你的iPhone打开google地图有效地址连接。 [转载]第三天 <wbr>打开地图《苹果iOS实例编程入门教程》


首先运行以安装好的 xCode

选择: File->New Project.

从 "New Project" 窗口
  
选择 : iPhone OS ->Applications-> View-Based Application
命名 : 我这里命名为 "OpenURL"

(1)  在xCode打开 OpenURLViewController.h 文件,加入下面红色代码

#import <UIKit/UIKit.h>
@imterface OpenURLViewController : UIViewController{

}
-(IBaction)openMaps;

@end

 

(2)  在xCode打开 OpenURLViewController.m 文件,加入下面红色代码

#import <UIKit/UIKit.h#import "Day3ViewController.h"
@implementation Day3ViewController

// The designated initializer. Override to perform setup that is required before the view is loaded.
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
    if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
        // Custom initialization
    }
    return self;
}
-(IBAction)openMaps{
     NSString* addressText = @"1 Queen st, Auckland, NZ";
    addressText = [addressText stringByAddingPercentEscapesUsingEncoding: NSASCIIStringEncoding];
    NSString* urlText = [NSString stringWithFormat:@"http://maps.google.com/maps?q=%@",addressText];
    //NSlog(urlText);
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlText]];
}



// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning]; // Releases the view if it doesn't have a superview
    // Release anything that's not essential, such as cached data
}
- (void)dealloc {
    [super dealloc];
}
@end


(3) UIView 界面设置

- 黑色背景,红色字体,让它看起来像一个闹钟。

双击文件: "OpenURLViewController.xib" ;
然后 "Interface Builder"  会自动打开,在这里我们可以编辑改变界面
 
选择: Tools -> Reveal In Document Window -> View

选择:  Tools -> Attributes Inspector

在色条内选择 "黑色",可以看到背景变为黑色

(4) 加入 Button ,点击后打开连接

选择: Tools -> Library ;从Library显示菜单中拖拉一个 Button 到 Main View
在主显示上点击 Button;从Button Attributes 里面Title内填上 "Open Google Map"。


(5)从 Interface Builder 写入 UIButton 的 class file

再打开SDK工具 Interface Builder

在主视窗口或文件窗口;点击 Button

选择: Tools -> Connection Inspector

移动鼠标在"Touch Up Inside" 后面圆圈上; 圆圈变为(+); 拖向直线连接到"File's Owner";
放开鼠标选择键出现 "openMaps"; 选上它。

选择: File -> Save then close Interface Builde 

最后在 xCode 选择 Build->Build and Go

 

下载今天程序文件: Day03.zip

文章本人经过修改及测试,希望大家多多交流。欢迎转载,但请注明出处,多珍惜别人的劳动成果,谢谢大家。

一切版权归http://blog.sina.com.cn/iphonesdk 所有

更多关于iPhone编程的内容可以参阅下书,
链接:
欢迎来到 <wbr><wbr>iPhone <wbr><wbr>SDK <wbr><wbr>编程语言 <wbr><wbr>@ <wbr><wbr>sina <wbr><wbr>Blog
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值