This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // NSURL+Extend.h | |
| // | |
| // Created by manjun.han on 13-4-17. | |
| // | |
| #import <Foundation/Foundation.h> | |
| @interface NSURL (Extend) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // UIResponder+FirstResponder.h | |
| // | |
| // Created by manjun.han on 13-4-18. | |
| // Copyright (c) 2013年 com.hmj. All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> | |
| @interface UIResponder (FirstResponder) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // UIView+Util.h | |
| // | |
| // Created by manjun.han on 12-12-5. | |
| // Copyright (c) 2012年 All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> | |
| @interface UIView (Util) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // UIView+Dimensions.h | |
| // | |
| // Created by manjun.han on 12-11-21. | |
| // Copyright (c) 2012年 All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> | |
| @interface UIView (Dimensions) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // UIActivityIndicatorView+Short.h | |
| // | |
| // Created by manjun.han on 13-3-27. | |
| // Copyright (c) 2013年 com.hmj. All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> | |
| @interface UIActivityIndicatorView (Short) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // MMPopoverController.h | |
| // Animation | |
| // | |
| // Created by manjun.han on 04/06/2013. | |
| // Copyright (c) 2013 animation. All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <! DOCTYPE html> | |
| <html> | |
| <head> | |
| </head> | |
| <body> | |
| <script type="text/javascript"> | |
| function BTreeNode(data){ | |
| this.leftNode = null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function(opt_ns , opt_wind){ | |
| var clsSplitor = /\s+/ , | |
| support = !document.body.classList ? false : true ; | |
| function trim(str) { | |
| if(Object.prototype.toString.call(str) !== "[object String]"){ | |
| return "" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // NSTimer+Block.h | |
| // Created by manjun.han on 23/06/2013. | |
| // | |
| typedef void (^TimerBlock)(NSTimeInterval time); | |
| @interface NSTimer (Block) | |
| + (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)seconds block:(TimerBlock) block repeats:(BOOL)repeats ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // UIWebView+RemoveShadow.h | |
| // Created by manjun.han on 06/06/2013. | |
| / | |
| /** | |
| * IOS6.1-及以下 | |
| */ | |
| @interface UIWebView (RemoveShadow) | |
| - (void)removeAllShadow ; |