俗话说 “工欲善其事,必先利其器”,好的成熟的第三方,是我们开发路上的利器;俗话又说“君子生非异也,善假于物也”NB的人并不是生下来就和别人不一样,只是他们擅于使用工具罢了!,熟练使用这些第三方,你就是开发者的"君子"! 本篇旨在更详细指导怎么使用对应的第三方,不会过多说明第三方怎么实现!就像你买了 ...
分类:
其他好文 时间:
2016-10-24 13:54:14
阅读次数:
305
1 #import "ViewController.h" 2 #import <UIKit/UIMenuController.h> 3 4 @interface ViewController ()<UIScrollViewDelegate> 5 @property (strong, nonatomi ...
分类:
其他好文 时间:
2016-10-23 17:21:05
阅读次数:
182
UIColor有一个方法叫做+ (UIColor *)colorWithPatternImage:(UIImage *)image;。返回的是一个UIColor,但没有明确的RGB值,所以叫做pattern color。 [color getRed:&a green:&g blue:&b alpha... ...
分类:
其他好文 时间:
2016-10-17 07:03:07
阅读次数:
148
@interface UIImage (Color) + (UIImage *)imageWithColor:(UIColor *)color size:(CGSize)size; @end @implementation UIImage (Color) + (UIImage *)imageWith ...
分类:
其他好文 时间:
2016-10-13 21:17:39
阅读次数:
176
extension UIView { func colorOfPoint (point: CGPoint) -> UIColor { var pixel = UnsafePointer<CUnsignedChar>.alloc(4) let colorSpace = CGColorSpaceCrea ...
分类:
编程语言 时间:
2016-10-11 16:32:18
阅读次数:
480
//16进制色值转换 #define UIColorFromHex(hex) [UIColor colorWithRed:((float)((hex & 0xFF0000) >> 16))/255.0 green:((float)((hex & 0xFF00) >> 8))/255.0 blue:( ...
分类:
移动开发 时间:
2016-10-10 16:34:39
阅读次数:
207
#import <UIKit/UIKit.h> @interface PJXPageView : UIView /* 圆点颜色*/ @property(strong,nonatomic)UIColor *PJX_currentColor; /*没选中的圆点颜色*/ @property(strong, ...
分类:
其他好文 时间:
2016-09-29 21:03:18
阅读次数:
177
(如果需要的不是使用的属性值如换行形式,可以把对应的属性在程序中书写然后按"command"+鼠标左键点击就可以查看所有属性值) 一label基本设置 self.view.backgroundColor = [UIColor redColor]; //创建第一个标签控件 UILabel *label ...
分类:
移动开发 时间:
2016-09-28 12:26:19
阅读次数:
276