2015年4月8日
摘要: 最近公司要做类似支付宝那种程序进入后台,再打开后程序界面变得模糊,网上找到了一份代码在此分享出来实现模糊的代码.h文件#import @interface BlurredView: UIView@end.m文件#import "BlurredView.h"#import @implementatio... 阅读全文
posted @ 2015-04-08 15:52 ABCDEFGHIJKLMN 阅读(305) 评论(0) 推荐(0) 编辑
  2015年4月7日
摘要: //返回label的高度+ (float)getLabelHeigth:(NSString *)textString defautWidth:(float)defautWidth defautHeigth:(float)defautHeigth fontSize:(int)fontSize{ CG... 阅读全文
posted @ 2015-04-07 16:55 ABCDEFGHIJKLMN 阅读(326) 评论(0) 推荐(0) 编辑
摘要: + (UIColor *) colorWithHexString: (NSString *) stringToConvert{ NSString *cString = [[stringToConvert stringByTrimmingCharactersInSet:[NSCharacterSet... 阅读全文
posted @ 2015-04-07 16:47 ABCDEFGHIJKLMN 阅读(103) 评论(0) 推荐(0) 编辑
摘要: -(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text{ if ([text isEqualToString:@"\n"]) {//检... 阅读全文
posted @ 2015-04-07 16:46 ABCDEFGHIJKLMN 阅读(299) 评论(0) 推荐(0) 编辑
摘要: CABasicAnimation*shake = [CABasicAnimationanimationWithKeyPath:@"transform.translation.x"]; shake.fromValue= [NSNumbernumberWithFloat:-5]; shake.toV... 阅读全文
posted @ 2015-04-07 15:58 ABCDEFGHIJKLMN 阅读(164) 评论(0) 推荐(0) 编辑