-
Notifications
You must be signed in to change notification settings - Fork 1
/
RFUIKit.m
686 lines (586 loc) · 17.8 KB
/
RFUIKit.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
//
// RFUIKit.m
// RFApp
//
// Created by gouzhehua on 14-6-25.
// Copyright (c) 2014年 GZH. All rights reserved.
//
#import "RFUIKit.h"
#import "RFKit.h"
#import "ARCMacros.h"
#import <objc/runtime.h>
static CGFloat s_screenHeight = -1;
@implementation RFUIKit
+ (CGFloat)screenHeight
{
if (s_screenHeight > 0)
return s_screenHeight;
CGRect bounds = [[UIScreen mainScreen] bounds];
CGFloat height = bounds.size.height;
s_screenHeight = height;
return s_screenHeight;
}
+ (CGRect)screenAvailableWindowFrame
{
return [[UIScreen mainScreen] bounds];
}
+ (CGFloat)screenAvailableHeightIOS7
{
return [RFUIKit screenHeight];
}
+ (CGRect)screenAvailableFrameIOS7
{
if (IS_IOS7)
{
return [RFUIKit screenAvailableWindowFrame];
}
else
{
CGRect frame = [[UIScreen mainScreen] bounds];
if (![UIApplication sharedApplication].statusBarHidden)
{
frame.size.height -= [UIApplication sharedApplication].statusBarFrame.size.height;
frame.origin.y += [UIApplication sharedApplication].statusBarFrame.size.height;
}
return frame;
}
}
+ (CGFloat)screenAvailableHeightIOS6
{
CGFloat height = [RFUIKit screenHeight];
if (![UIApplication sharedApplication].statusBarHidden)
{
height -= [UIApplication sharedApplication].statusBarFrame.size.height;
}
return height;
}
+ (CGRect)screenAvailableFrameIOS6
{
if (IS_IOS7)
{
CGRect frame = [[UIScreen mainScreen] bounds];
if (![UIApplication sharedApplication].statusBarHidden)
{
frame.size.height -= [UIApplication sharedApplication].statusBarFrame.size.height;
frame.origin.y = [UIApplication sharedApplication].statusBarFrame.size.height;
}
return frame;
}
else
{
CGRect frame = [[UIScreen mainScreen] bounds];
if (![UIApplication sharedApplication].statusBarHidden)
{
frame.size.height -= [UIApplication sharedApplication].statusBarFrame.size.height;
frame.origin.y = 0;
}
return frame;
}
}
+ (void)iosNoticeCountStyle:(UIView *)view shadowColor:(UIColor *)shadowColor
{
float height = view.frame.size.height;
float width = view.frame.size.width;
float r = MIN(height, width) / 2;
[view roundedViewWithRadius:r];
[view.layer setBorderColor:[UIColor whiteColor].CGColor];
[view.layer setBorderWidth:1];
view.layer.shadowRadius = 3;
view.layer.shadowColor = shadowColor.CGColor;
view.layer.shadowOffset = CGSizeMake(0, 0);
view.layer.shadowOpacity = 0.8;
view.layer.shadowPath = [[UIBezierPath bezierPathWithRect:view.bounds] CGPath];
}
+ (id)loadObjectFromNibName:(NSString *)aNibName class:(Class)aClass
{
NSArray* objects = [[NSBundle mainBundle] loadNibNamed:aNibName owner:nil options:nil];
for (id object in objects)
{
if ([object isKindOfClass:aClass])
{
return object;
}
}
return nil;
}
+ (NSMutableDictionary *)textAttributesWithFont:(UIFont *)aFont
colorDef:(const RFColorDef *)aColorDef
shadowDef:(const RFColorDef *)aShadowDef
{
NSMutableDictionary *dict = [NSMutableDictionary dictionary];
if (aFont != nil)
{
if (IS_IOS7)
{
[dict setObject:aFont forKey:NSFontAttributeName];
}
else
{
[dict setObject:aFont forKey:UITextAttributeFont];
}
}
if (aColorDef != kColorDefNull)
{
if (IS_IOS7)
{
[dict setObject:DEF2COLOR(aColorDef) forKey:NSForegroundColorAttributeName];
}
else
{
[dict setObject:DEF2COLOR(aColorDef) forKey:UITextAttributeTextColor];
}
}
if (aShadowDef != kColorDefNull)
{
if (IS_IOS7)
{
NSShadow *shadow = SAFE_ARC_AUTORELEASE([[NSShadow alloc] init]);
shadow.shadowColor = DEF2COLOR(aShadowDef);
shadow.shadowOffset = CGSizeMake(aShadowDef->ox, aShadowDef->oy);
[dict setObject:shadow forKey:NSShadowAttributeName];
}
else
{
[dict setObject:DEF2COLOR(aShadowDef) forKey:UITextAttributeTextShadowColor];
[dict setObject:[NSValue valueWithUIOffset:UIOffsetMake(aShadowDef->ox, aShadowDef->oy)] forKey:UITextAttributeTextShadowOffset];
}
}
return dict;
}
@end
#pragma mark UIButton (RFUIKit)
@implementation UIButton (RFUIKit)
- (void)setTitleForAllState:(NSString *)title
{
[self setTitle:title forState:UIControlStateNormal];
[self setTitle:title forState:UIControlStateSelected];
[self setTitle:title forState:UIControlStateHighlighted];
[self setTitle:title forState:UIControlStateDisabled];
}
- (void)setBgImg:(UIImage *)bgImg clImg:(UIImage *)clImg
{
if (bgImg != nil)
{
[self setBackgroundImage:bgImg forState:UIControlStateNormal];
}
if (clImg != nil)
{
[self setBackgroundImage:clImg forState:UIControlStateHighlighted];
}
}
- (void)setBgImg:(UIImage *)bgImg clImg:(UIImage *)clImg slImg:(UIImage *)slImg
{
if (bgImg != nil)
{
[self setBackgroundImage:bgImg forState:UIControlStateNormal];
}
if (clImg != nil)
{
[self setBackgroundImage:clImg forState:UIControlStateHighlighted];
}
if (slImg != nil)
{
[self setBackgroundImage:slImg forState:UIControlStateSelected];
}
}
- (void)setBgImgWithName:(NSString *)bgImg clImg:(NSString *)clImg stretchLeft:(NSInteger)left stretchTop:(NSInteger)top
{
UIImage *bg = nil;
UIImage *bgCl = nil;
if (![NSString isEmpty:bgImg])
bg = [UIImage imageStretchWithName:bgImg left:left top:top];
if (![NSString isEmpty:clImg])
bgCl = [UIImage imageStretchWithName:clImg left:left top:top];
[self setBgImg:bg clImg:bgCl];
}
- (void)setBgImgWithName:(NSString *)bgImg clImg:(NSString *)clImg slImg:(NSString *)slImg stretchLeft:(NSInteger)left stretchTop:(NSInteger)top
{
UIImage *bg = nil;
UIImage *bgCl = nil;
UIImage *bgSl = nil;
if (![NSString isEmpty:bgImg])
bg = [UIImage imageStretchWithName:bgImg left:left top:top];
if (![NSString isEmpty:clImg])
bgCl = [UIImage imageStretchWithName:clImg left:left top:top];
if (![NSString isEmpty:slImg])
bgSl = [UIImage imageStretchWithName:slImg left:left top:top];
[self setBgImg:bg clImg:bgCl slImg:bgSl];
}
@end
#pragma mark UIView (RFUIKit)
@implementation UIView (RFUIKit)
- (void)roundedViewWithRadius:(CGFloat)radius
{
self.layer.masksToBounds = YES;
self.layer.cornerRadius = radius;
}
- (UIImage *)toImage
{
float scale = [[UIScreen mainScreen] scale];
CGSize size = self.bounds.size;
UIGraphicsBeginImageContextWithOptions(size, YES, scale);
[self.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
- (void)setFrameLeft:(CGFloat)left
{
CGRect frame = self.frame;
frame.origin.x = left;
self.frame = frame;
}
- (void)setFrameTop:(CGFloat)top
{
CGRect frame = self.frame;
frame.origin.y = top;
self.frame = frame;
}
- (void)setFrameOrigin:(CGFloat)left top:(CGFloat)top
{
CGRect frame = self.frame;
frame.origin.x = left;
frame.origin.y = top;
self.frame = frame;
}
- (void)setFrameHeight:(CGFloat)height
{
CGRect frame = self.frame;
frame.size.height = height;
self.frame = frame;
}
- (void)setFrameWidth:(CGFloat)width
{
CGRect frame = self.frame;
frame.size.width = width;
self.frame = frame;
}
- (void)setFrameSize:(CGFloat)height width:(CGFloat)width
{
CGRect frame = self.frame;
frame.size.height = height;
frame.size.width = width;
self.frame = frame;
}
- (void)setFrameSize:(CGSize)size
{
CGRect frame = self.frame;
frame.size = size;
self.frame = frame;
}
- (void)fillSuperView
{
UIView *sv = self.superview;
if (sv != nil)
{
CGRect rect = CGRectZero;
rect.size = sv.frame.size;
self.frame = rect;
}
}
- (void)setTapActionWithTarget:(id)target selector:(SEL)selector
{
self.userInteractionEnabled = YES;
UITapGestureRecognizer *gr = [[UITapGestureRecognizer alloc] initWithTarget:target action:selector];
[self addGestureRecognizer:gr];
}
- (void)borderRed
{
[self.layer setBorderColor:[UIColor redColor].CGColor];
[self.layer setBorderWidth:1];
}
- (void)borderOrange
{
[self.layer setBorderColor:[UIColor orangeColor].CGColor];
[self.layer setBorderWidth:1];
}
- (void)borderYellow
{
[self.layer setBorderColor:[UIColor yellowColor].CGColor];
[self.layer setBorderWidth:1];
}
- (void)borderGreen
{
[self.layer setBorderColor:[UIColor greenColor].CGColor];
[self.layer setBorderWidth:1];
}
- (void)borderCyan
{
[self.layer setBorderColor:[UIColor cyanColor].CGColor];
[self.layer setBorderWidth:1];
}
- (void)borderBlue
{
[self.layer setBorderColor:[UIColor blueColor].CGColor];
[self.layer setBorderWidth:1];
}
- (void)borderPurple
{
[self.layer setBorderColor:[UIColor purpleColor].CGColor];
[self.layer setBorderWidth:1];
}
- (void)borderBlack
{
[self.layer setBorderColor:[UIColor blackColor].CGColor];
[self.layer setBorderWidth:1];
}
- (void)borderWhite
{
[self.layer setBorderColor:[UIColor whiteColor].CGColor];
[self.layer setBorderWidth:1];
}
- (void)borderGray
{
[self.layer setBorderColor:[UIColor grayColor].CGColor];
[self.layer setBorderWidth:1];
}
- (NSArray *)getAllViews
{
NSMutableArray *result = [NSMutableArray array];
for (UIView *view in self.subviews)
{
[result addObject:view];
[result addObjectsFromArray:[view getAllViews]];
}
return result;
}
- (NSArray *)getAllViewsWithClass:(Class)cls
{
NSMutableArray *result = [NSMutableArray array];
for (UIView *view in self.subviews)
{
if ([view isKindOfClass:cls])
{
[result addObject:view];
}
[result addObjectsFromArray:[view getAllViewsWithClass:cls]];
}
return result;
}
@end
#pragma mark UIImage (RFUIKit)
@implementation UIImage (RFUIKit)
- (UIImage *)imageScaleToSize:(CGSize)size
{
UIGraphicsBeginImageContext(size);
[self drawInRect:CGRectMake(0, 0, size.width, size.height)];
UIImage *scaledImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return scaledImage;
}
- (UIImage *)captureWithSize:(CGSize)size
{
CGFloat imgWidth = CGImageGetWidth(self.CGImage);
CGFloat imgHeight = CGImageGetHeight(self.CGImage);
CGFloat width = size.width;
CGFloat height = size.height;
CGFloat adjustImgWidth = 0;
CGFloat adjustImgHeight = 0;
UIImage *img_capture = nil;
// 截取
if ((imgHeight/height)>(imgWidth/width))
{
adjustImgWidth = imgWidth;
adjustImgHeight = (imgWidth/width)*height;
CGRect rect = CGRectMake(0, (imgHeight-adjustImgHeight)/2, adjustImgWidth, adjustImgHeight);
CGImageRef imgRef = CGImageCreateWithImageInRect(self.CGImage, rect);
img_capture=[UIImage imageWithCGImage:imgRef];
CGImageRelease(imgRef);
}
else
{
adjustImgHeight = imgHeight;
adjustImgWidth = (imgHeight/height)*width;
CGRect rect = CGRectMake((imgWidth-adjustImgWidth)/2, 0, adjustImgWidth, adjustImgHeight);
CGImageRef imgRef = CGImageCreateWithImageInRect(self.CGImage, rect);
img_capture = [UIImage imageWithCGImage:imgRef];
CGImageRelease(imgRef);
}
// 缩放
UIImage* ret = [img_capture imageScaleToSize:CGSizeMake(width, height)];
return [UIImage imageWithCGImage:ret.CGImage scale:1 orientation:self.imageOrientation];
}
- (UIImage *)originImg
{
if (IS_IOS7)
{
return [self imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
}
else
{
return self;
}
}
- (UIImage *)imageWithNoOrientation
{
UIImage *aImage = self;
// No-op if the orientation is already correct
if (aImage.imageOrientation == UIImageOrientationUp)
return aImage;
// We need to calculate the proper transformation to make the image upright.
// We do it in 2 steps: Rotate if Left/Right/Down, and then flip if Mirrored.
CGAffineTransform transform = CGAffineTransformIdentity;
switch (aImage.imageOrientation) {
case UIImageOrientationDown:
case UIImageOrientationDownMirrored:
transform = CGAffineTransformTranslate(transform, aImage.size.width, aImage.size.height);
transform = CGAffineTransformRotate(transform, M_PI);
break;
case UIImageOrientationLeft:
case UIImageOrientationLeftMirrored:
transform = CGAffineTransformTranslate(transform, aImage.size.width, 0);
transform = CGAffineTransformRotate(transform, M_PI_2);
break;
case UIImageOrientationRight:
case UIImageOrientationRightMirrored:
transform = CGAffineTransformTranslate(transform, 0, aImage.size.height);
transform = CGAffineTransformRotate(transform, -M_PI_2);
break;
default:
break;
}
switch (aImage.imageOrientation) {
case UIImageOrientationUpMirrored:
case UIImageOrientationDownMirrored:
transform = CGAffineTransformTranslate(transform, aImage.size.width, 0);
transform = CGAffineTransformScale(transform, -1, 1);
break;
case UIImageOrientationLeftMirrored:
case UIImageOrientationRightMirrored:
transform = CGAffineTransformTranslate(transform, aImage.size.height, 0);
transform = CGAffineTransformScale(transform, -1, 1);
break;
default:
break;
}
// Now we draw the underlying CGImage into a new context, applying the transform
// calculated above.
CGContextRef ctx = CGBitmapContextCreate(NULL, aImage.size.width, aImage.size.height,
CGImageGetBitsPerComponent(aImage.CGImage), 0,
CGImageGetColorSpace(aImage.CGImage),
CGImageGetBitmapInfo(aImage.CGImage));
CGContextConcatCTM(ctx, transform);
switch (aImage.imageOrientation) {
case UIImageOrientationLeft:
case UIImageOrientationLeftMirrored:
case UIImageOrientationRight:
case UIImageOrientationRightMirrored:
// Grr...
CGContextDrawImage(ctx, CGRectMake(0,0,aImage.size.height,aImage.size.width), aImage.CGImage);
break;
default:
CGContextDrawImage(ctx, CGRectMake(0,0,aImage.size.width,aImage.size.height), aImage.CGImage);
break;
}
// And now we just create a new UIImage from the drawing context
CGImageRef cgimg = CGBitmapContextCreateImage(ctx);
UIImage *img = [UIImage imageWithCGImage:cgimg];
CGContextRelease(ctx);
CGImageRelease(cgimg);
return img;
}
+ (UIImage *)imageStretchWithName:(NSString *)name left:(NSInteger)left top:(NSInteger)top
{
return [[UIImage imageNamed:name] resizableImageWithCapInsets:UIEdgeInsetsMake(top, left, top, left) resizingMode:UIImageResizingModeStretch];
}
+ (UIImage *)colorImage:(UIColor *)aColor
{
CGSize imageSize = CGSizeMake(10, 10);
UIGraphicsBeginImageContextWithOptions(imageSize, 0, [UIScreen mainScreen].scale);
[aColor set];
UIRectFill(CGRectMake(0, 0, imageSize.width, imageSize.height));
UIImage *pressedColorImg = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return [pressedColorImg resizableImageWithCapInsets:UIEdgeInsetsMake(1, 1, 1, 1)];
}
+ (UIImage *)colorImageWithDef:(const RFColorDef *)colorDef
{
CGSize imageSize = CGSizeMake(10, 10);
UIGraphicsBeginImageContextWithOptions(imageSize, 0, [UIScreen mainScreen].scale);
[[UIColor colorWithRed:colorDef->r/255.0 green:colorDef->g/255.0 blue:colorDef->b/255.0 alpha:colorDef->a] set];
UIRectFill(CGRectMake(0, 0, imageSize.width, imageSize.height));
UIImage *pressedColorImg = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return [pressedColorImg resizableImageWithCapInsets:UIEdgeInsetsMake(1, 1, 1, 1)];
}
@end
#pragma mark UIViewController (RFUIKit)
@implementation UIViewController (RFUIKit)
- (void)presentViewController:(UIViewController *)viewController animated:(BOOL)bAnimated
{
[self presentViewController:viewController animated:bAnimated completion:^(){}];
}
- (void)presentViewController:(UIViewController *)viewController animated:(BOOL)bAnimated statusBarStyle:(UIStatusBarStyle)statusBarStyle
{
[UIApplication sharedApplication].statusBarHidden = NO;
[UIApplication sharedApplication].statusBarStyle = statusBarStyle;
[self presentViewController:viewController animated:bAnimated completion:^(){}];
}
- (void)dismissViewController
{
[self dismissViewControllerAnimated:YES completion:^(){
[[UIApplication sharedApplication] setStatusBarHidden:NO withAnimation:UIStatusBarAnimationSlide];
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent animated:NO];
}];
}
- (void)dismissMe
{
[self.presentingViewController dismissViewControllerAnimated:YES completion:^(){
[[UIApplication sharedApplication] setStatusBarHidden:NO withAnimation:UIStatusBarAnimationSlide];
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent animated:NO];
}];
}
- (void)popBackMe
{
[self.navigationController popViewControllerAnimated:YES];
}
@end
#pragma mark UITableView (RFUIKit)
@implementation UITableView (RFUIKit)
- (void)noHeader
{
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 1, 1)];
view.backgroundColor = [UIColor clearColor];
self.tableHeaderView = view;
}
- (void)noFooter
{
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 1, 1)];
view.backgroundColor = [UIColor clearColor];
self.tableFooterView = view;
}
@end
#pragma mark UITableViewCell (RFUIKit)
@implementation UITableViewCell (RFUIKit)
- (void)noneSelectedStyle
{
UIView *selectedBackgroundView = [[UIView alloc] initWithFrame:self.bounds];
selectedBackgroundView.backgroundColor = [UIColor clearColor];
self.selectedBackgroundView = selectedBackgroundView;
}
- (void)separatorLeft:(CGFloat)left right:(CGFloat)right
{
if (IS_IOS7)
{
self.separatorInset = UIEdgeInsetsMake(0, left, 0, right);
}
}
@end
#pragma mark CAAnimation (RFUIKit)
@implementation CAAnimation (RFUIKit)
static void * kRFUIKitCAAnimationKey = "kRFUIKitCAAnimationKey";
- (void)setFinishBlock:(CAAnimationFinishBlock)block
{
self.delegate = self;
objc_setAssociatedObject(self, kRFUIKitCAAnimationKey, block, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
- (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag
{
CAAnimationFinishBlock block = (CAAnimationFinishBlock)objc_getAssociatedObject(self, kRFUIKitCAAnimationKey);
if (block != nil)
{
block(flag);
}
self.delegate = nil;
}
@end