自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 iOS中UIButton的block

UIButton+block#import #import typedef void (^ActionBlock)();@interface UIButton (block)@property (readonly) NSMutableDictionary *event;- (void) handleControlEvent:(UIControlEvents)control

2015-01-30 14:48:56 555

原创 UIColor的RGB转16进制和转UIImage

+ (UIImage *)createImageWithColor:(UIColor *)color{ CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f); UIGraphicsBeginImageContext(rect.size); CGContextRef context = UIGraphicsGetCurrentCo

2015-01-30 14:45:14 405

原创 个人代码中常用的宏定义

// 2.判断是否为iOS7#define HBMiOS7 ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0)#define HBMiOS8 ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0)// 3.获得颜色#define HBMColor

2015-01-30 14:42:40 551

转载 在iOS中使用ZXing库

http://blog.devtang.com/blog/2012/12/23/use-zxing-library/

2015-01-30 14:16:14 513

转载 定制iOS 7中的导航栏和状态栏(转)

最新的iOS 7外观上有大量的改动。从开发者的角度来看,导航栏和状态栏就发生了明显的变化。状态栏现在是半透明的了,这也就意味着导航栏会显示在状态栏后面。有些情 况下,导航栏的背景图片可以延伸显示到状态栏后面。下面就是本文将要介绍的内容:iOS 7中默认的导航栏、设置导航栏的背景颜色、在导航栏中使用背景图片、定制返回按钮的颜色、修改导航栏标题的字体、修改导航栏标题为图片、添加多个按钮、修改状态栏

2015-01-30 13:41:48 634

转载 iOS地球坐标,火星坐标,百度坐标互转

// // CLLocation+YCLocation.h // YCMapViewDemo // // Created by gongliang on 13-9-16. // Copyright (c) 2013年 gongliang. All rights reserved. // 火星坐标系转换扩展 /* 从 CLLocationManager 取出

2015-01-30 13:37:31 1706

原创 ios各种地图的跳转并导航

#import "XTMapKitViewController.h" @interface XTMapKitViewController (){ MKMapView *_mapView; CLLocationCoordinate2D _coordinate; UIActionSheet *_actionSheet; NSMut

2015-01-30 13:35:41 544

转载 如何清除控件的Target-Action

继承自UIControl的控件都可以通过-(void)addTarget:action:forControlEvents的消息进行某些事件处理函数的注册,在不需要的时候还可以通过-(void)removeTarget:action:forControlEvents取消事件处理函数。不过应用开发中在添加时会逐个添加,但在清理时通常则是希望一次性清理干净。但-(void)removeTarget:ac

2015-01-30 13:31:45 347

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除