Skip to content

Commit

Permalink
bug修复
Browse files Browse the repository at this point in the history
  • Loading branch information
Vandrim committed Jan 12, 2019
1 parent ec3a394 commit 897605f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VanFramework.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "VanFramework"
s.version = "2.7.2"
s.version = "2.7.3"
s.summary = "A Framework of iOS development. It will help developer more efficient"
s.homepage = "https://github.com/Vandrim/VANFramework"
s.license = "MIT"
Expand Down
10 changes: 5 additions & 5 deletions WWJFramework.framework/Headers/WWJConstant.h
Expand Up @@ -7,11 +7,11 @@
#import <Foundation/Foundation.h>

//device
#define iPhone4 ([UIScreen mainScreen].bounds.size.height == 480)
#define iPhone5 ([UIScreen mainScreen].bounds.size.height == 568)
#define iPhone6 ([UIScreen mainScreen].bounds.size.height == 667)
#define iPhone6p ([UIScreen mainScreen].bounds.size.height == 736)
#define iPhoneX ([UIScreen mainScreen].bounds.size.height == 812 || [UIScreen mainScreen].bounds.size.height == 896.0)
#define iPhone4 ([UIScreen mainScreen].bounds.size.height == 480.0)
#define iPhone5 ([UIScreen mainScreen].bounds.size.height == 568.0)
#define iPhone6 ([UIScreen mainScreen].bounds.size.height == 667.0)
#define iPhone6p ([UIScreen mainScreen].bounds.size.height == 736.0)
#define iPhoneX ([UIScreen mainScreen].bounds.size.height == 812.0 || [UIScreen mainScreen].bounds.size.height == 896.0)

//系统版本
#define IOS_VERSION [[[UIDevice currentDevice] systemVersion] floatValue]
Expand Down
Binary file modified WWJFramework.framework/WWJAlertView.nib
Binary file not shown.
Binary file modified WWJFramework.framework/WWJFramework
Binary file not shown.
Binary file modified WWJFramework.framework/WWJProgressHUD.nib
Binary file not shown.
Binary file modified WWJFramework.framework/WWJWebViewController.nib
Binary file not shown.

0 comments on commit 897605f

Please sign in to comment.