Util.h 529 B

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