1:统一修改导航栏的样式,在 AppDelegate.m中

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
self.window.backgroundColor = [UIColor whiteColor]; //设置导航条样式
[self customizeInterface]; if ([Login isLogin]) {
[self setupTabViewController];
}else{
[UIApplication sharedApplication].applicationIconBadgeNumber = ;
[self setupLoginViewController];
}
[self.window makeKeyAndVisible];
return YES;
} - (void)customizeInterface {
//设置Nav的背景色和title色
UINavigationBar *navigationBarAppearance = [UINavigationBar appearance];
NSDictionary *textAttributes = nil;
if (NSFoundationVersionNumber > NSFoundationVersionNumber_iOS_6_1) {
[navigationBarAppearance setTintColor:[UIColor whiteColor]];//返回按钮的箭头颜色
[[UITextField appearance] setTintColor:[UIColor colorWithHexString:@"0x3bbc79"]];//设置UITextField的光标颜色
[[UITextView appearance] setTintColor:[UIColor colorWithHexString:@"0x3bbc79"]];//设置UITextView的光标颜色
[[UISearchBar appearance] setBackgroundImage:[UIImage imageWithColor:[UIColor colorWithHexString:@"0xe5e5e5"]] forBarPosition: barMetrics:UIBarMetricsDefault]; textAttributes = @{
NSFontAttributeName: [UIFont boldSystemFontOfSize:kNavTitleFontSize],
NSForegroundColorAttributeName: [UIColor whiteColor],
};
} else {
#if __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_7_0
[[UISearchBar appearance] setBackgroundImage:[UIImage imageWithColor:[UIColor colorWithHexString:@"0xe5e5e5"]]]; textAttributes = @{
UITextAttributeFont: [UIFont boldSystemFontOfSize:kNavTitleFontSize],
UITextAttributeTextColor: [UIColor whiteColor],
UITextAttributeTextShadowColor: [UIColor clearColor],
UITextAttributeTextShadowOffset: [NSValue valueWithUIOffset:UIOffsetZero],
};
#endif
}
[navigationBarAppearance setBackgroundImage:[UIImage imageWithColor:[UIColor colorWithHexString:@"0x28303b"]] forBarMetrics:UIBarMetricsDefault];
[navigationBarAppearance setTitleTextAttributes:textAttributes];
} 其中上面的版本判断:
FOUNDATION_EXPORT double NSFoundationVersionNumber; #if TARGET_OS_IPHONE
#define NSFoundationVersionNumber_iPhoneOS_2_0 678.24
#define NSFoundationVersionNumber_iPhoneOS_2_1 678.26
#define NSFoundationVersionNumber_iPhoneOS_2_2 678.29
#define NSFoundationVersionNumber_iPhoneOS_3_0 678.47
#define NSFoundationVersionNumber_iPhoneOS_3_1 678.51
#define NSFoundationVersionNumber_iPhoneOS_3_2 678.60
#define NSFoundationVersionNumber_iOS_4_0 751.32
#define NSFoundationVersionNumber_iOS_4_1 751.37
#define NSFoundationVersionNumber_iOS_4_2 751.49
#define NSFoundationVersionNumber_iOS_4_3 751.49
#define NSFoundationVersionNumber_iOS_5_0 881.00
#define NSFoundationVersionNumber_iOS_5_1 890.10
#define NSFoundationVersionNumber_iOS_6_0 992.00
#define NSFoundationVersionNumber_iOS_6_1 993.00
#define NSFoundationVersionNumber_iOS_7_0 1047.20
#define NSFoundationVersionNumber_iOS_7_1 1047.25
#endif

2:判断一张view 是否被加载过用 nil == view.superview

        if (nil == view.superview) {     //判断一个view 是否被加载过    如果被加载过,它的superview就不会是nil
CGRect frame = scrollView0.frame;
frame.origin.x = frame.size.width * page;
frame.origin.y = ;
view.frame = frame;
[scrollView0 addSubview:view];
}

3:百度地图初始化坐标范围

- (void)viewDidLoad {
[super viewDidLoad]; [UIApplication sharedApplication].applicationIconBadgeNumber =;
_mapView=[[BMKMapView alloc] initWithFrame:CGRectMake(, , , )];
BMKCoordinateRegion region; ////表示范围的结构体
region.center.latitude = 24.27;// 中心中
region.center.longitude = 118.06;
region.span.latitudeDelta = 0.1;//经度范围(设置为0.1表示显示范围为0.2的纬度范围)
region.span.longitudeDelta = 0.1;//纬度范围
[_mapView setRegion:region];
[self.baiduView addSubview:_mapView];
} 自定义大头针的图片: - (BMKAnnotationView *)mapView:(BMKMapView *)mapView viewForAnnotation:(id <BMKAnnotation>)annotation
{
if ([annotation isKindOfClass:[BMKPointAnnotation class]]) {
BMKPinAnnotationView *newAnnotationView = [[BMKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"myAnnotation"];
newAnnotationView.pinColor = BMKPinAnnotationColorPurple;
newAnnotationView.animatesDrop = YES;// 设置该标注点动画显示
newAnnotationView.image = [UIImage imageNamed:@"iphone"]; //把大头针换成别的图片
return newAnnotationView;
}
return nil;
}

4:隐藏键盘

当前视图上有多个uitextfield时,来隐藏键盘, 先遍历视图的所有子视图来 如果是UITextField就将其设为非第一响应 当然,如果要隐藏子视图上的UITextField的话可以进一步判断view的subviews的个数,如果大于1则遍历view的子视图,然后作类似操作

//隐藏键盘  当前视图上有多个uitextfield

for(UIView *view in [self.view subviews])
{
if(view is kindofclass:[UITextField Class])
{
[view resignfirstrespond];
}
}
直接用 [self.view endEditing:NO]
直接取消当前Window上的各种view的键盘 [[[UIApplication sharedApplication] keyWindow] endEditing:YES];
或者使用如下代码
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField { UITapGestureRecognizer *tapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(done:)]; tapGestureRecognizer.numberOfTapsRequired = ; [self.view addGestureRecognizer: tapGestureRecognizer]; //只需要点击非文字输入区域就会响应hideKeyBoard return YES; }

5:UIView中的坐标转换

// 将像素point由point所在视图转换到目标视图view中,返回在目标视图view中的像素值
- (CGPoint)convertPoint:(CGPoint)point toView:(UIView *)view;
// 将像素point从view中转换到当前视图中,返回在当前视图中的像素值
- (CGPoint)convertPoint:(CGPoint)point fromView:(UIView *)view; // 将rect由rect所在视图转换到目标视图view中,返回在目标视图view中的rect
- (CGRect)convertRect:(CGRect)rect toView:(UIView *)view;
// 将rect从view中转换到当前视图中,返回在当前视图中的rect
- (CGRect)convertRect:(CGRect)rect fromView:(UIView *)view; 例把UITableViewCell中的subview(btn)的frame转换到 controllerA中 // controllerA 中有一个UITableView, UITableView里有多行UITableVieCell,cell上放有一个button
// 在controllerA中实现:
CGRect rc = [cell convertRect:cell.btn.frame toView:self.view];

CGRect rc = [self.view convertRect:cell.btn.frame fromView:cell];
// 此rc为btn在controllerA中的rect 或当已知btn时: CGRect rc = [btn.superview convertRect:btn.frame toView:self.view];

CGRect rc = [self.view convertRect:btn.frame fromView:btn.superview]; 比如:
CGPoint origin = [self convertPoint:CGPointZero toView:[UIApplication sharedApplication].keyWindow];
把self的0点坐标系,放到keyWindow的坐标系换算一下,获得一个“绝对的”坐标
一个在父控件中的坐标为0, 其实父控件本来有坐标200, 通过上面可以获得这个200,200值

6:弹出一个视图,并有一个背影的视图(大体代码)

- (UIView *)myTapBackgroundView{
if (!_myTapBackgroundView) {
_myTapBackgroundView = ({
UIView *view = [[UIView alloc] initWithFrame:kScreen_Bounds];
view.backgroundColor = [UIColor clearColor];
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(changeShowing)];
[view addGestureRecognizer:tap];
view;
});
}
return _myTapBackgroundView;
} - (UIView *)myContentView{
if (!_myContentView) {
_myContentView = ({
UIView *view = [[UIView alloc] initWithFrame:CGRectZero];
view.backgroundColor = [UIColor whiteColor];
view;
});
}
return _myContentView;
} - (void)changeShowing{
[kKeyWindow endEditing:YES];
if (!_myContentView) {//未载入过
[self loadUIElement];
}
CGPoint origin = [self convertPoint:CGPointZero toView:kKeyWindow];
CGFloat contentHeight = self.isShowing? : kCodeBranchTagButton_ContentHeight;
if (self.isShowing) {//隐藏
self.enabled = NO;
[UIView animateWithDuration:0.3 animations:^{
self.myTapBackgroundView.backgroundColor = [UIColor colorWithWhite: alpha:];
self.myContentView.alpha = ;
self.myContentView.frame = CGRectMake(, origin.y-contentHeight, kScreen_Width, contentHeight);
self.imageView.transform = CGAffineTransformRotate(self.imageView.transform, DEGREES_TO_RADIANS());
} completion:^(BOOL finished) {
[self.myTapBackgroundView removeFromSuperview];
[self.myContentView removeFromSuperview];
self.enabled = YES;
self.isShowing = NO;
}];
}else{//显示
self.myContentView.frame = CGRectMake(, origin.y, kScreen_Width, );
[kKeyWindow addSubview:self.myTapBackgroundView];
[kKeyWindow addSubview:self.myContentView];
self.enabled = NO;
[UIView animateWithDuration:0.3 animations:^{
self.myTapBackgroundView.backgroundColor = [UIColor colorWithWhite: alpha:0.2];
self.myContentView.alpha = 1.0;
self.myContentView.frame = CGRectMake(, origin.y-contentHeight, kScreen_Width, contentHeight);
self.imageView.transform = CGAffineTransformRotate(self.imageView.transform, DEGREES_TO_RADIANS());
} completion:^(BOOL finished) {
self.enabled = YES;
self.isShowing = YES;
}];
}
} 其中:#define kScreen_Bounds [UIScreen mainScreen].bounds
#define kKeyWindow [UIApplication sharedApplication].keyWindow 运用在项目中一个下拉菜单:

/**

*  @author wujunyang, 15-05-13 14:05:12

*

*  @brief  初始化背景视图

*  @return <#return value description#>

*/

- (UIView *)myTapBackgroundView{

if (!_myTapBackgroundView) {

_myTapBackgroundView = ({

UIView *view = [[UIView alloc] initWithFrame:SCREENFRAME];

view.backgroundColor = [UIColor clearColor];

UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(changeShowing)];

[view addGestureRecognizer:tap];

view;

});

}

return _myTapBackgroundView;

}

/**

*  @author wujunyang, 15-05-13 14:05:25

*

*  @brief  初始化弹出视图

*  @return <#return value description#>

*/

- (UIView *)myContentView{

if (!_myContentView) {

_myContentView = ({

UIView *view = [[UIView alloc] initWithFrame:CGRectZero];

view.backgroundColor = [UIColor whiteColor];

view;

});

}

return _myContentView;

}

/**

*  @author wujunyang, 15-05-13 14:05:39

*

*  @brief  加载xib文件到弹出视图里面

*/

- (void)loadUIElement{

self.myTapBackgroundView.backgroundColor = [UIColor colorWithWhite:0 alpha:0];

self.homeMyselfMenuView=[HomeMyselfMenuView instanceHomeMyselfMenuView];

self.homeMyselfMenuView.frame = CGRectMake(0, 0, 0, 0);//注意其宽高

[self.myContentView addSubview:self.homeMyselfMenuView];

}

/**

*  @author wujunyang, 15-05-13 14:05:07

*

*  @brief  控制视图的显示及隐藏

*/

- (void)changeShowing{

if (!_myContentView) {

[self loadUIElement];

}

CGFloat contentHeight = self.isShowing? 0: STATUSNAVBARHEIGHT;

if (self.isShowing) {//隐藏

[self narrowTransToView:NO];

[UIView animateWithDuration:0.3 animations:^{

self.myTapBackgroundView.backgroundColor = [UIColor colorWithWhite:0 alpha:0];

self.myContentView.alpha = 0;

self.myContentView.frame = CGRectMake(0,0, SCREEN_WIDTH, contentHeight);

} completion:^(BOOL finished) {

[self.myTapBackgroundView removeFromSuperview];

[self.myContentView removeFromSuperview];

self.isShowing = NO;

}];

}else{//显示

[self narrowTransToView:YES];

self.myContentView.frame = CGRectMake(0, STATUSNAVBARHEIGHT, SCREEN_WIDTH, 0);

[self.view addSubview:self.myTapBackgroundView];

[self.view addSubview:self.myContentView];

[UIView animateWithDuration:0.3 animations:^{

self.myTapBackgroundView.backgroundColor = [UIColor colorWithWhite:0 alpha:0.6];

self.myContentView.alpha = 1.0;

self.myContentView.frame = CGRectMake(0, STATUSNAVBARHEIGHT, SCREEN_WIDTH, contentHeight);

} completion:^(BOOL finished) {

self.isShowing = YES;

}];

}

}

/**

*  @author wujunyang, 15-05-13 15:05:22

*

*  @brief  视图区缩放

*  @param isNarrow 是否缩放

*/

-(void)narrowTransToView:(BOOL)isNarrow

{

_contentView.transform=CGAffineTransformIdentity;

[UIView beginAnimations:nil context:UIGraphicsGetCurrentContext()];

if(isNarrow)

{

_contentView.transform=CGAffineTransformMakeScale(0.9f, 0.9f);

}

else

{

_contentView.transform=CGAffineTransformMakeScale(1.0f, 1.0f);

}

[UIView commitAnimations];

}

IOS客户端Coding项目记录(五)的更多相关文章

  1. IOS客户端Coding项目记录导航

    IOS客户端Coding项目记录(一) a:UITextField设置出现清除按键 b:绘画一条下划线  表格一些设置 c:可以定义表头跟底部视图(代码接上面) d:隐藏本页的导航栏 e:UIEdge ...

  2. IOS客户端Coding项目记录(四)

    1:打开Xcode,然后闪退,报加载某库出现异常 如/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolc ...

  3. IOS客户端Coding项目记录(一)

    1:UITextField设置出现清除按键 self.textField.clearButtonMode = UITextFieldViewModeWhileEditing; 说明: UITextFi ...

  4. IOS客户端Coding项目记录(六)

    1:获取某一行的坐标 UITableViewCell *cell = [_myTableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow: ...

  5. IOS客户端Coding项目记录(三)

    18:图片视图几种填充样式 _imgView.contentMode = UIViewContentModeScaleAspectFill; 如下: typedef NS_ENUM(NSInteger ...

  6. IOS客户端Coding项目记录(二)

    9:第三方插件整理 JSON转实体:jsonModel https://github.com/icanzilb/JSONModel/ 美化按键:BButton https://github.com/m ...

  7. 开源项目在真机调试(Coding iOS 客户端为例)

    一.前言 iOS 13学习系列:如何在github下载开源项目到本地(Coding iOS 客户端为例)已经把 Coding iOS 客户端源码下载到本地. 但项目进行真机调试遇到很多问题. 二.问题 ...

  8. 如何在github下载开源项目到本地(Coding iOS 客户端为例)

    一.前言 以 Coding iOS 客户端 为例讲解如何在github下载开源项目到本地 github地址:https://github.com/Coding/Coding-iOS 二.分析 根据项目 ...

  9. “快的打车”创始人陈伟星的新项目招人啦,高薪急招Java服务端/Android/Ios 客户端研发工程师/ mysql DBA/ app市场推广专家,欢迎大家加入我们的团队! - V2EX

    "快的打车"创始人陈伟星的新项目招人啦,高薪急招Java服务端/Android/Ios 客户端研发工程师/ mysql DBA/ app市场推广专家,欢迎大家加入我们的团队! - ...

随机推荐

  1. C# 对话框隐藏 标题栏

    在对话框设计窗口上双击,进入如下函数 private void Form1_Load(object sender, EventArgs e) { this.FormBorderStyle = Form ...

  2. ruby -- 问题解决(五)页面返回跳转

    今天在做页面跳转的时候,google了下页面跳转的方法, 跳转到上一个页面:redirect_to :back <%= link_to "返回" ,:back %> 这 ...

  3. ServiceStack Redis客户端的bug

    client.Set("key", 0); 当使用上面的语句设置 真正存入redis的却是一个空白字符,而不是0 跟了一下源码,发现 private static byte[] T ...

  4. java io系列06之 序列化总结(Serializable 和 Externalizable)

    本章,我们对序列化进行深入的学习和探讨.学习内容,包括序列化的作用.用途.用法,以及对实现序列化的2种方式Serializable和Externalizable的深入研究. 转载请注明出处:http: ...

  5. AngularJS的学习--TodoMVC的分析

    最近一段时间一直在看AngularJS,趁着一点时间总结一下. 官网地址:http://angularjs.org/ 先推荐几个教程 1. AngularJS入门教程 比较基础,是官方Tutorial ...

  6. php和java的memcached使用的兼容性问题解决过程

    1. 背景: php 使用memcached客户端设置一个key,java使用java-memcached-client去读,报错如下: ERROR|com.whalin.MemCached.MemC ...

  7. [转载]部署Office Web Apps Server并配置其与SharePoint 2013的集成

    Office Web Apps Server 是新的 Office 服务器产品,它提供 Word.PowerPoint.Excel 和 OneNote 的基于浏览器的版本.单个 Office Web ...

  8. 任督二脉之Shell中的正则表达式

    VBird说学习Linux,掌握了Shell和正则就相当于打通了任督二脉,此后能力的成长才会突飞猛进. Shell的基础学习之前已经总结了一篇博客:http://www.cnblogs.com/jyz ...

  9. 探秘重编译(Recompilations)(1/2)

    这篇文章我想谈下SQL Server里一个非常重要的性能调优话题:重编译(Recompilations) .当你执行非常简单的存储过程(使用临时表)时,就会发生.今天我想奠定SQL Server里重编 ...

  10. js-初步了解

    一.javascript的由来 Javascript是一种web技术,最初起名叫LiveScript,它是Netscape开发出来一种脚本语言,其目的是为了扩展基本的Html的功能,用来替代复杂的CG ...