| 123456789101112131415161718192021222324252627 |
- //
- // Util.h
- // IBOSS
- //
- // Created by iHope on 14-6-6.
- // Copyright (c) 2014年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface Util : NSObject
- +(void)alignLabelWithTop:(UILabel *)label;
- //字典转Json
- +(NSString*)objectToJson:(id)_obj;
- //判断电话是否有效
- + (BOOL)isValidTelephone:(NSString *)telephone;
- //返回Home区域的高度
- + (CGFloat) obtainHomeAreaHeight;
- + (NSString *)positiveFormat:(NSString *)text;
- +(NSString*)thousandSeparatorFormat:(NSString *)number;
- @end
|