IOS开发基础知识--碎片13

1:运行程序报the file couldn't be opened because you don't have permission to view it 

解决办法:项目—>targets->build settings->build options->changed the value of the "Compiler for C/C++/Objective-C" to Default Compiler. 

2:百度地图引用

1.1如图引用的是.framework形式开发包时,引入的命名空间则是
#import <BaiduMapAPI/BMapKit.h>//引入所有的头文件
#import <BaiduMapAPI/BMKMapView.h>//只引入所需的单个头文件
如果是引入用的是.a形式开发包时,引入的命名空间则是
#import “BMapKit.h"

1.2百度地图现在提供的两个.framework的包,一个是真机一个是测试机,可以使用终端的命令把它合成一个;

3:自定义大头针百度地图

- (void)viewDidLoad {[super viewDidLoad];//百度地图初始化_mapView=[[BMKMapView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT-NAVBARHEIGHT)];_mapView.delegate=self;[self.view addSubview:_mapView];//标出坐标点
    [self addPointAnnotation];
}//添加标注
- (void)addPointAnnotation
{for (int i=0; i<self.coordinates.count; i++) {coordinateBean *model=self.coordinates[i];BMKPointAnnotation* pointAnnotation = [[BMKPointAnnotation alloc]init];CLLocationCoordinate2D coor;coor.latitude = model.latitude;coor.longitude = model.longitude;pointAnnotation.coordinate = coor;//通过title来起到传值的作用pointAnnotation.title=[NSString stringWithFormat:@"%d",i];[_mapView addAnnotation:pointAnnotation];//显示弹出窗
        [_mapView selectAnnotation:pointAnnotation animated:YES];//判断那个是中心,没有则0必传参数if (i==self.selectIndex) {BMKCoordinateRegion region; ////表示范围的结构体region.center.latitude  = model.latitude;// 中心中region.center.longitude = model.longitude;region.span.latitudeDelta = 0;//经度范围(设置为0.1表示显示范围为0.2的纬度范围)region.span.longitudeDelta = 0;//纬度范围
            [_mapView setRegion:region];}}
}
//处理自定义弹出视图
- (BMKAnnotationView *)mapView:(BMKMapView *)mapView viewForAnnotation:(id <BMKAnnotation>)annotation
{if ([annotation isKindOfClass:[BMKPointAnnotation class]]) {BMKPinAnnotationView *newAnnotationView = [[BMKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"myrenameMark"];newAnnotationView.pinColor = BMKPinAnnotationColorPurple;newAnnotationView.animatesDrop = YES;// 设置该标注点动画显示
       newAnnotationView.image = [UIImage imageNamed:self.mapPointImageName];   //把大头针换成别的图片int selectIndex=[((BMKPointAnnotation *)annotation).title intValue];//获得值coordinateBean *model=[self.coordinates objectAtIndex:[((BMKPointAnnotation *)annotation).title intValue]];UIView *popView=[[UIView alloc]initWithFrame:CGRectMake(0, 3, 100, 20)];UIImage *img=[UIImage imageNamed:@"mapViewBackground"];UIEdgeInsets edge=UIEdgeInsetsMake(0, 20, 0, 10);img=[img resizableImageWithCapInsets:edge resizingMode:UIImageResizingModeStretch];UIImageView *myimage=[[UIImageView alloc] initWithImage:img];myimage.frame=CGRectMake(30, 0, 100, 40);myimage.userInteractionEnabled=YES;[popView addSubview:myimage];//自定义显示的内容UILabel *driverName = [[UILabel alloc]initWithFrame:CGRectMake(0, 3, 100, 15)];driverName.backgroundColor=[UIColor clearColor];driverName.text=model.title;driverName.font = [UIFont systemFontOfSize:12];driverName.textColor = [UIColor blackColor];driverName.textAlignment = NSTextAlignmentLeft;[myimage addSubview:driverName];UILabel *carName = [[UILabel alloc]initWithFrame:CGRectMake(0, 18, 100, 15)];carName.backgroundColor=[UIColor clearColor];carName.text=model.comments;carName.font = [UIFont systemFontOfSize:12];carName.textColor = [UIColor blackColor];carName.textAlignment = NSTextAlignmentLeft;[myimage addSubview:carName];BMKActionPaopaoView *pView = [[BMKActionPaopaoView alloc]initWithCustomView:popView];pView.frame = CGRectMake(0, 0, 100, 40);((BMKPinAnnotationView*)newAnnotationView).paopaoView = nil;((BMKPinAnnotationView*)newAnnotationView).paopaoView = pView;newAnnotationView.tag=selectIndex+10;return newAnnotationView;}return nil;
}- (void)didReceiveMemoryWarning {[super didReceiveMemoryWarning];// Dispose of any resources that can be recreated.
}
/***  @author wujunyang, 15-05-12 13:05:05**  @brief  跟对百度地图的处理*  @param animated <#animated description#>*/
-(void)viewWillAppear:(BOOL)animated
{[_mapView viewWillAppear];_mapView.delegate=self;_locationService.delegate=self;
}
/***  @author wujunyang, 15-01-06 10:01:53**  跟对百度地图的处理**  @param animated <#animated description#>*/
-(void)viewWillDisappear:(BOOL)animated
{[_mapView viewWillDisappear];_mapView.delegate=nil;_locationService.delegate=nil;
}其中有个自定义model:@interface coordinateBean : NSObject
//纬度
@property(assign,nonatomic)float latitude;
//经度
@property(assign,nonatomic)float longitude;
//标题
@property(strong,nonatomic)NSString *title;
//注解
@property(strong,nonatomic)NSString *comments;
@end

 4:自动隐藏和显示工具栏和导航条

toolbar属性、toolbarItems与上一讲的navigationBar、navigationItem类似。只不过toolbarItems没有navigationItem的左右区分,它就自己一个人在做事,相当于没有下属。可以在toolbar上设置很多,比如背景颜色、背景图片、背景样式、大小位置(不过有些貌似设置无效),当然和navigationBar一样,对于它的是否显示和隐藏是由它的老爸即navigationController控制的。所以[self.navigationController setNavigationBarHidden:YES animated:YES];也会把底部的toolBarItems给隐藏起来,如果要隐藏导航又不想底部toolBarItems被隐藏掉,可以用普通的view替代toolBarItems;首先在viewDidLoad里设置toolBarHidden = NO, 默认是YES(隐藏的)为了让toolbar显示,需要设置为NO(不隐藏)。- (void)viewDidLoad
{[super viewDidLoad];self.title = @"隐藏导航栏";// self.toolbarItemsself.navigationController.toolbar.barStyle = self.toolBar.barStyle;self.navigationController.toolbarHidden = NO;[self.navigationController.toolbar setTranslucent:YES];self.toolbarItems = [[[NSMutableArray alloc] initWithArray:self.toolBar.items] autorelease];
}在点击中间button的时候的显示和隐藏navigation bar和toolBar实现代码如下:- (IBAction)toggleNavigationBar:(id)sender
{//Check the current state of the navigation bar...BOOL navBarState = [self.navigationController isNavigationBarHidden];//Set the navigationBarHidden to the opposite of the current state.[self.navigationController setNavigationBarHidden:!navBarState animated:YES];[self.navigationController setToolbarHidden:!navBarState animated:YES];//Change the label on the button.if (navBarState){[button setTitle:@"隐藏 Navigationr and toolbar" forState:UIControlStateNormal];[button setTitle:@"隐藏 Navigation Bar toolbar" forState:UIControlStateHighlighted];}else{[button setTitle:@"显示 Navigation Bar toolbar" forState:UIControlStateNormal];[button setTitle:@"显示 Navigation Bar toolbar" forState:UIControlStateHighlighted];}
}

5:View代码结构的一些建议

在viewDidload里面只做addSubview的事情,然后在viewWillAppear里面做布局的事情,最后在viewDidAppear里面做Notification的监听之类的事情。至于属性的初始化,则交给getter去做。@interface CustomObject()
@property (nonatomic, strong) UILabel *label;
@end@implement#pragma mark - life cycle- (void)viewDidLoad
{[super viewDidLoad];[self.view addSubview:self.label];
}- (void)viewWillAppear:(BOOL)animated
{[super viewWillAppear:animated];self.label.frame = CGRectMake(1, 2, 3, 4);
}#pragma mark - getters and setters- (UILabel *)label
{if (_label == nil) {_label = [[UILabel alloc] init];_label.text = @"1234";_label.font = [UIFont systemFontOfSize:12];... ...}return label;
}
@end注意:*重点,在get方法里面不能写self.noLabel;千万不要用“点”语法,这样会造成get方法死循环,因为“点”语法就是调用的get方法,所以要用下划线属性名的方法得到对象(在内存这其实是一个指针)。
@interface MasonryViewController ()
@property(nonatomic,strong)UIView *conView;
@property(nonatomic,assign)int intstate;
@end@implementation MasonryViewController- (void)viewDidLoad {[super viewDidLoad];[self.view addSubview:self.conView];
}
//懒加载
-(UIView *)conView
{if(_conView==nil){_conView=[[UIView alloc]init];_conView.backgroundColor=[UIColor redColor];}return _conView;
}-(int)intstate
{_intstate=0;return _intstate;
}//布局约束
-(void)viewDidLayoutSubviews
{[self.conView mas_makeConstraints:^(MASConstraintMaker *make) {make.top.equalTo(self.view.mas_top).with.offset(100);make.left.equalTo(self.view.mas_left).with.offset(60);make.right.equalTo(self.view.mas_right).with.offset(0);make.height.equalTo(@50);}];
}- (void)didReceiveMemoryWarning {[super didReceiveMemoryWarning];
}

 

6: iOS中的生成随机数方法

生成0-x之间的随机正整数int value =arc4random_uniform(x + 1);生成随机正整数int value = arc4random() 通过arc4random() 获取0到x-1之间的整数的代码如下:int value = arc4random() % x; 获取1到x之间的整数的代码如下: int value = (arc4random() % x) + 1; 最后如果想生成一个浮点数,可以在项目中定义如下宏:#define ARC4RANDOM_MAX      0x100000000 然后就可以使用arc4random() 来获取0到100之间浮点数了(精度是rand()的两倍),代码如下:double val = floorf(((double)arc4random() / ARC4RANDOM_MAX) * 100.0f);实例(从数组中随机显示出一个背景图,再通过网络加载显示出来):self.bgView=[[UIImageView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];self.bgView.image=[UIImage imageNamed:@"AppBg"];[self.view addSubview:self.bgView];[self.view sendSubviewToBack:self.bgView];NSDictionary *params=[[NSDictionary alloc] init];[[HomeMainNetAPIManager sharedManager] getBackgroundImage:params andBlock:^(id data, NSError *error) {if (!error&&data) {BackgroundImageBean *groundImagebean =(BackgroundImageBean *)data;int dataNum=groundImagebean.data.count;if (groundImagebean.data&&dataNum>0) {int r=arc4random_uniform(dataNum);GroundImageBean *curBean=groundImagebean.data[r];[self.bgView sd_setImageWithURL:[NSURL URLWithString:curBean.ImgUrl] placeholderImage:[UIImage imageNamed:@"AppBg"] completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {dispatch_async(dispatch_get_main_queue(), ^{self.bgView.image=image;});}];}}}];

7:沙盒路径知识整理

模拟器的路径从之前的~/Library/Application Support/iPhone Simulator移动到了~/Library/Developer/CoreSimulator/Devices/文件都在个人用户名文件夹下的一个隐藏文件夹里,中文叫资源库,他的目录其实是Library。因为应用是在沙箱(sandbox)中的,在文件读写权限上受到限制,只能在几个目录下读写文件:
Documents:应用中用户数据可以放在这里,iTunes备份和恢复的时候会包括此目录
tmp:存放临时文件,iTunes不会备份和恢复此目录,此目录下文件可能会在应用退出后删除
Library/Caches:存放缓存文件,iTunes不会备份此目录,此目录下文件不会在应用退出删除iTunes在与iPhone同步时,备份所有的Documents和Library文件。
iPhone在重启时,会丢弃所有的tmp文件。查看方法:
方法1、可以设置显示隐藏文件,然后在Finder下直接打开。设置查看隐藏文件的方法如下:打开终端,输入命名
(1)显示Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool true
(2)隐藏Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool false
(3)输完单击Enter键,退出终端,重新启动Finder就可以了 重启Finder:鼠标单击窗口左上角的苹果标志-->强制退出-->Finder-->
现在能看到资源库文件夹了。 
打开资源库后找到/Application Support/iPhone Simulator/文件夹。这里面就是模拟器的各个程序的沙盒目录了。
方法2、这种方法更方便,在Finder上点->前往->前往文件夹,输入/Users/username/Library/Application Support/iPhone Simulator/  前往。
username这里写用户名。 自定义类返回各目录路径:#import <Foundation/Foundation.h>@interface ICSandboxHelper : NSObject+ (NSString *)homePath;     // 程序主目录,可见子目录(3个):Documents、Library、tmp
+ (NSString *)appPath;        // 程序目录,不能存任何东西
+ (NSString *)docPath;        // 文档目录,需要ITUNES同步备份的数据存这里,可存放用户数据
+ (NSString *)libPrefPath;    // 配置目录,配置文件存这里
+ (NSString *)libCachePath;    // 缓存目录,系统永远不会删除这里的文件,ITUNES会删除
+ (NSString *)tmpPath;        // 临时缓存目录,APP退出后,系统可能会删除这里的内容
+ (BOOL)hasLive:(NSString *)path; //判断目录是否存在,不存在则创建

实现代码:#import "ICSandboxHelper.h"@implementation ICSandboxHelper+ (NSString *)homePath{return NSHomeDirectory();
}+ (NSString *)appPath
{NSArray * paths = NSSearchPathForDirectoriesInDomains(NSApplicationDirectory, NSUserDomainMask, YES);return [paths objectAtIndex:0];
}+ (NSString *)docPath
{NSArray * paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);return [paths objectAtIndex:0];
}+ (NSString *)libPrefPath
{NSArray * paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);return [[paths objectAtIndex:0] stringByAppendingFormat:@"/Preference"];
}+ (NSString *)libCachePath
{NSArray * paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);return [[paths objectAtIndex:0] stringByAppendingFormat:@"/Caches"];
}+ (NSString *)tmpPath
{return [NSHomeDirectory() stringByAppendingFormat:@"/tmp"];
}+ (BOOL)hasLive:(NSString *)path
{if ( NO == [[NSFileManager defaultManager] fileExistsAtPath:path] ){return [[NSFileManager defaultManager] createDirectoryAtPath:pathwithIntermediateDirectories:YESattributes:nilerror:NULL];}return NO;
}

 

转载于:https://www.cnblogs.com/wujy/p/4503381.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/258919.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

《LoadRunner 12七天速成宝典》—第2章2.6节第二个性能测试案例

本节书摘来自异步社区《LoadRunner 12七天速成宝典》一书中的第2章&#xff0c;第2.6节第二个性能测试案例&#xff0c;作者陈霁&#xff0c;更多章节内容可以访问云栖社区“异步社区”公众号查看。 2.6 第二个性能测试案例云云&#xff1a;烤鱼吃得很爽。 恋恋&#xff1a;就…

MongoDB_1

突然想去看下MongoDB的东西&#xff0c;于是有了这篇文章。其实很早以前就看过一些关于NoSql的文章&#xff0c;还记得当时里面有介绍MongoDB的&#xff0c;多瞅了2眼&#xff0c;并且在Window下安装了MongoDB的驱动&#xff0c;小玩了会。今天重新翻出来&#xff0c;没成想在命…

牛顿法与拟牛顿法,SDM方法的一些注记

SDM方法 考虑一般额NLS问题&#xff1a; f(x)minx||h(x)−y||2这里x为优化参数&#xff0c;h为非线性函数&#xff0c;y是已知变量&#xff0c;如下是基于梯度的迭代公式&#xff1a; ΔxαAJTh(h(x)−y)这里α是步长&#xff0c;A是缩放因子&#xff0c;Jh是h在当前参数x下的…

pyqt5从子目录加载qrc文件_实战PyQt5: 045-添加资源文件

添加资源文件在使用PyQt进行图形界面开发的时候不免要用到一些外部资源&#xff0c;比如图片&#xff0c;qss配置文件等。在前面代码中&#xff0c;遇到这类问题&#xff0c;我们使用绝对路径的方式来解决&#xff0c;这种方式&#xff0c;本身有其不方便之处(比如&#xff0c;…

《 Python树莓派编程》——2.7 总结

本节书摘来自华章出版社《Python树莓派编程》一书中的第2章&#xff0c;第2.7节&#xff0c;作者&#xff1a;[美]沃尔弗拉姆多纳特&#xff08;Wolfram Donat&#xff09;著 韩德强 等译&#xff0c;更多章节内容可以访问云栖社区“华章计算机”公众号查看。 2.7 总结 本章简…

ACM的输入输出总结

关于ACM的输入输出&#xff08;一&#xff09; 一般来说ACM的现场赛会规定输入输出 或者是文件输入标准输出 也可能是文件输入文件输出 如果没有规定的话那么一般就是标准的输入输出了 那说一下输入输出的重定向 一般用下面两种方法 c常用: #include <fstream.h>ifstream…

hdu 2064汉诺塔III 递推

汉诺塔递推题&#xff0c;比汉诺塔多了一个限制条件&#xff0c;盘子只允许在相邻的柱子之间移动。 分析&#xff1a; 第1步:初始状态&#xff1b; 第2步:把上面的n-1个盘移到第3号杆上&#xff1b; 第3步:把第n个盘从1移到2&#xff1b; 第4步:把前n-1个从3移到1&#xff0c;给…

西门子ddc_铁门关西门子两通电动阀VVF42.25-10C+SKD60西

铁门关西门子两通电动阀西SIEMENS/西门子电动温控阀、控制箱、电动蝶阀、电动球阀、超声波热量表、超声波流量计、电磁流量计阀体灰口铸铁 EN-GJL-2502.霍尼韦尔主营&#xff1a;楼宇资料系统、热网自控系统、风机盘管电动两通阀、空气压差开关、水流开关、电动执行器、风阀执行…

swap关于指针的使用

先看下面两个例子&#xff1a; #include <iostream> // std::cout #include <utility> // std::swapint main() {int x 10, y 20; // x:10 y:20int* p1 &x;int* p2 &y;std::swap(*p1, *p2); // x:20 y:10 …

JS-键盘事件之方向键移动元素

注意三点&#xff1a; 1&#xff1a;事件名称onkeydown。 2&#xff1a;事件加给document&#xff0c;而非window。 3&#xff1a; 把元素的top&#xff0c;left值分别用offsetTop&#xff0c;offsetLeft来设定。 <!DOCTYPE html> <html><head><meta char…

Swift学习字符串、数组、字典

一.字符串的使用 let wiseWords "\"I am a handsome\"-boy" var emptyString "" if emptyString.isEmpty{ println("这是一个空值") }简单说明&#xff1a;isEmpty方法是用来判断字符串是否为空值的&#xff0c;之后会执行if语句中的…

python对excel操作简书_Python读写Excel表格,就是这么简单粗暴又好用

最近在做一些数据处理和计算的工作&#xff0c;因为数据是以.CSV格式保存的&#xff0c;因此刚开始直接用Excel来处理。 但是做着做着发现重复的劳动&#xff0c;其实并没有多大的意义&#xff0c;于是就想着写个小工具帮着处理。 以前正好在一本书上看到过&#xff0c;使用Pyt…

九度 1470 调整方阵

题目描述&#xff1a; 输入一个N&#xff08;N<10&#xff09;阶方阵&#xff0c;按照如下方式调整方阵&#xff1a;1.将第一列中最大数所在的行与第一行对调。2.将第二列中从第二行到第N行最大数所在的行与第二行对调。依此类推...N-1.将第N-1列中从第N-1行到第N行最大数所…

halcon/c++接口基础 之 halcon初认识

从今天开始&#xff0c;开始更新博客&#xff0c;主要分享自己最近正在翻译的Halcon/C教程。先给出第一篇文章&#xff0c;由于此文章&#xff0c;是用latex写的&#xff0c;直接导成html&#xff0c;保存在七牛云存储上&#xff0c;所以直接点击链接就看到&#xff0c;后面我将…

指数型组织形成的 9 大驱动因素

指数时代&#xff0c;是一个前所未有的激动人心的世界。 Airbnb, 谷歌, 亚马逊和GitHub这些知名的公司&#xff0c;都有一个让人称羡的共同点&#xff0c;那就是——他们都是非常成功的指数型组织&#xff08;Exponential Organizations&#xff0c;ExO’s&#xff09;。 “在当…

Java for LeetCode 061 Rotate List

Given a list, rotate the list to the right by k places, where k is non-negative. For example: Given 1->2->3->4->5->NULL and k 2, return 4->5->1->2->3->NULL. 解题思路&#xff1a; 只需找到对应的位置&#xff0c;然后指向head&…

mysqld:表mysql.plugin不存在_99%测试工程师不知道的数据库知识|干货

点击上方“蓝字”关注我们数据库&#xff0c;简而言之可视为电子化的文件柜——存储电子文件的处所&#xff0c;用户可以对文件中的数据进行新增、查询、更新、删除等操作。所谓“数据库”是以一定方式储存在一起、能与多个用户共享、具有尽可能小的冗余度、与应用程序彼此独立…

Windows Phone 执行模型概述

Windows Phone 执行模型控制在 Windows Phone 上运行的应用程序的生命周期&#xff0c;该过程从启动应用程序开始&#xff0c;直至应用程序终止。 该执行模型旨在始终为最终用户提供快速响应的体验。为此&#xff0c;在任何给定时间内&#xff0c;Windows Phone 仅允许一个应用…

halcon/c++接口基础 之 构造函数与Halcon算子

Halcon/C提供了构造函数&#xff0c;主要基于适合的Halcon算子。比如说HImage和HBarCode基于read_image and create_bar_code_model。 请注意当前的Halcon版本针对不同的算子构造函数的功能不同。如下我们介绍了一些最常用的Halcon算子&#xff0c;而一个完整的构造函数列表可…

Android Wifi简单的梳理【转】

本文转载自&#xff1a;http://blog.csdn.net/gabbzang/article/details/10005411 代表一个已经配置过的网络。包含网络ID(networkId)、该网络ID代表的网络的BSSID和SSID、加密机制、密码等信息。 WifiInfo&#xff1a; 代表一个正在建立或者已经建立的网络连接。该网络的BSSID…