摘要:
找到Apple内部对MKUserLocation去除偏移的方法。[MKLocationManager _applyChinaLocationShift:(CLLocation*)arg]这个方法返回去除偏移后的CLLocation*。Code:@interfaceMKLocationManager- (CLLocation*)_applyChinaLocationShift:(CLLocation*)arg;- (BOOL)chinaShiftEnabled;+ (id)sharedLocationManager;@endCLLocationManager's Delegate:- ( 阅读全文
摘要:
网上关于 three20 框架的资料比较少,CocoaChina 会员 “diyago” 分享了他总结的 Three20 TTUrlMap 使用方法。希望本文对你有所帮助。- (void)from:(NSString*)URL toViewController:(id)target;- (void)from:(NSString*)URL toViewController:(id)target selector:(SEL)selector;- (void)from:(NSString*)URL toViewController:(id)target transition:(NSInteger)t 阅读全文
摘要:
在做地图有关的程序时,我们经常需要用户在地图上指定位置我们再用大头针标记。1、在viewDidLoad中添加我们要捕获的手势:UILongPressGestureRecognizer *lpress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPress:)];lpress.minimumPressDuration = 0.5;//按0.5秒响应longPress方法lpress.allowableMovement = 10.0;[m_mapView addGestureRec 阅读全文
摘要:
简单的说:以前经营固定电话业务的只有中国电信。当时的114查号台就是中国电信经营的。 国家一看这不行啊!垄断影响发展。 于是,2002年,中国电信被拆分了,北方十省(北京、天津、河北、山东、河南、山西、内蒙古、辽宁、吉林、黑龙江)的中国电信分公司被并进了当时还很小的中国网通公司。 在这十个省市,“电信局”或者说“中国电信公司”被“中国网通公司”彻底取代了。固话、宽带用户全部转为由电信转为网通,自然,这十个省市的114业务也由网通公司继续经营。 这就是说,在这段时间内,你在北方十省拨打114,接听的是中国网通当地分公司的工作人员,在南方和西部,你拨打114,接听的是中国网通当地分公司的工作人员。 阅读全文
摘要:
找到一个关于iphone定位的的资料,收藏一下其实使用iphone的定位系统开发软件是很简单的一件事,下面我们就来认识一下iphone的定位系统的使用。1.Getting the User’s Current Location获取用户当前位置。获取位置的方式有三种:GPS, cell tower triangulation(蜂窝站点), 和Wi-Fi Positioning Service (WPS).其中GPS是最精确的定位方式,但是在第一代iphone上没有。GPS是通过读取很多卫星微波信号来确定当前位置的。蜂窝站点通过 iphone周围的站点计算出来的,在蜂窝站点密集的地方使用这种技术可 阅读全文
摘要:
//This example send email with attachment using server side//So iPhone will fill form and send proper request to web server using POST method//For test you can use attached sendEmail.php -(NSMutableData *)generateDataFromText:(NSString *)dataText fieldName:(NSString *)fieldName{ NSString *post = [NS 阅读全文
摘要:
这个类可以用来检测用户是否连接到internet. 用法非常简单,只有一个方法,返回 YES或NO。一个简单的例子:if ([Connection isConnected]) { ... } else { ... } 类的头文件// // Connection.h // #import <Foundation/Foundation.h> #import <SystemConfiguration/SystemConfiguration.h> #import <netinet/in.h> #import <arpa/inet.h> #import & 阅读全文
摘要:
//This example send email with attachment using server side//So iPhone will fill form and send proper request to web server using POST method//For test you can use attached sendEmail.php -(NSMutableData *)generateDataFromText:(NSString *)dataText fieldName:(NSString *)fieldName{ NSString *post = [NS 阅读全文
摘要:
iphone object_c 也支持异常捕获,用过没有呀。 在处理UITableView, MKMapView等,你可以加一些异常捕获,因为显示数据常常出错。下面是示例代码@try { Statements } @catch (NSException *ex) { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:[ex name] message:[ex reason] delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil]; [alert 阅读全文
摘要:
一.基本知识 目前主流的智能手机大部分都支持GoogleMap地图程序,而手机上的地图程序确实能给我们的出行带来很大的方便。在iPhone中利用MapKit框架可以很方便的显示Google地图,并且可以在地图上添加标注。二.具体介绍1.MKMapView的显示(1)创建MKMapViewCGRect rect = CGRectMake(0, 20, 320, 460);MKMapView *mapView = [[MKMapView alloc] initWithFrame:rect];(2)设定经纬度CLLocationCoordinate2D theCoordinate;theCoordi 阅读全文