摘要:
- (void)loadView { [super loadView]; self.navigationController.navigationBar.hidden = YES; return; } -(void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [self.... 阅读全文
摘要:
-(void)viewDidLayoutSubviews { if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) { [self.tableView setSeparatorInset:UIEdgeInsetsZero]; } if ([self.t... 阅读全文
摘要:
//延时一秒执行 dispatch_time_t time = dispatch_time(DISPATCH_TIME_NOW, 1*NSEC_PER_SEC); dispatch_after(time, dispatch_get_main_queue(), ^{ [weakSelf.navigationController... 阅读全文
摘要:
+ (CGSize)sizeWithText:(NSString *)text andFont:(UIFont *)font andMaxSize:(CGSize)maxSize { CGSize expectedLabelSize = CGSizeZero; NSMutableParagraphStyle *paragraphStyle = [[NSMutablePa... 阅读全文
摘要:
// // UIWebView+ToFile.h // UIWebViewToFile // // Created by Tracy E on 13-6-10. // Copyright (c) 2013 EsoftMobile.com. All rights reserved. // #import @interface UIWebView... 阅读全文
摘要:
#import "JZGMMMMModel.h" #import @implementation JZGMMMMModel //**动态添加方法 void addmethod(id self, SEL _cmd) { NSLog(@"addmethod"); } +(BOOL)resolveInstanceMethod:(SEL)sel { class_addMethod([s... 阅读全文
摘要:
原创文章,转载请注明出处:http://blog.sina.com.cn/s/blog_60342e330101tcz1.html 1. 概念 objective-c有两个扩展机制:category和associative。我们可以通过category来扩展方法,但是它有个很大的局限性,不能扩展属性 阅读全文
摘要:
+ (UIImage *)imageWithColor:(UIColor *)color { CGRect rect = CGRectMake(0, 0, 1, 1); UIGraphicsBeginImageContext(rect.size); CGContextRef context = UI 阅读全文
摘要:
Swift项目引入MBProgressHUD库 MBProgressHUD的源码很简单,就一个h接口文件和一个m实现文件,一共2个文件。 下载后,把两个文件拖到Swift项目中,XCode会提示是否创建桥接文件,选择是后,会自动创建一个Bridging-Header.h文件。 我们需要在这个桥接文件 阅读全文