摘要: 1,首先选中Build Phases ,在Link Binary With Libraries 下添加MapKit.framework框架2,在头文件(.h文件)处添加:#import 3,如果需要定位到你当前的位置,该类还需要遵循 :4,声明MKMapView对象: MKMapView *mapView = [[MKMapViewalloc]initWithFrame:[UIScreenmainScreen].applicationFrame]; mapView.showsUserLocation = YES; mapView.mapType = MKMapTypeStandard; ... 阅读全文
posted @ 2014-03-11 19:17 shidaying 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 一,设置单选效果- (void)selectedBtnPress:(UIButton*)sender{ //首先把原来按钮的选中效果消除 for (int i=0;i<num;i++) {//num为总共设置单选效果按钮的数目 UIButton *btn = (UIButton*)[view viewWithTag:i];//view为这些btn的父视图 btn.selected = NO; } sender.selected = YES;//sender.selected = !sender.selected;}二 UIButton同时设置图片和标题//UIEdgeIns... 阅读全文
posted @ 2014-03-11 13:57 shidaying 阅读(3732) 评论(0) 推荐(0) 编辑
摘要: NSLog常见输出格式Table 1Format specifiers supported by theNSStringformatting methods and CFString formatting functionsSpecifierDescription%@Objective-C object, printed as the string returned bydescriptionWithLocale:if available, ordescriptionotherwise. Also works withCFTypeRefobjects, returning the result 阅读全文
posted @ 2014-03-11 13:19 shidaying 阅读(587) 评论(0) 推荐(0) 编辑
摘要: ios 向工程里添加Fonts 1.网上搜索字体文件(后缀名为.ttf,或.odf),假如你加入的字体为微软雅黑 2.把字体库导入到工程的resouce中 3.然后在你的工程的Info.plist文件中新建一行(Add Row),添加key为:UIAppFonts(或Fonts provided b 阅读全文
posted @ 2014-03-11 10:40 shidaying 阅读(354) 评论(0) 推荐(0) 编辑
摘要: iOS 向模拟器里添加照片模拟器里Photos最开始时是没有照片的,有时我们做Demo时需要Photos里面的照片做测试,这时就需要把Mac上的照片导入到模拟器里。步骤如下:1,打开模拟器2,选中照片,把照片往模拟器里拖(这时照片会以Safari打开)3,鼠标长按照片,弹出菜单以后,选中Save Image选项即可,这时照片就会导入到模拟器里了。注意:一次拖动多张照片也只会添加一张,最好是一次拖动一张 阅读全文
posted @ 2014-03-11 10:12 shidaying 阅读(463) 评论(0) 推荐(0) 编辑