Commit 58d501fb authored by shenyong's avatar shenyong

2.2.1被拘修改

parent cbded6a2
...@@ -816,7 +816,7 @@ ...@@ -816,7 +816,7 @@
CODE_SIGN_ENTITLEMENTS = PhoneManager/PhoneManager.entitlements; CODE_SIGN_ENTITLEMENTS = PhoneManager/PhoneManager.entitlements;
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3; CURRENT_PROJECT_VERSION = 4;
DEVELOPMENT_TEAM = 6K23946NQ5; DEVELOPMENT_TEAM = 6K23946NQ5;
GENERATE_INFOPLIST_FILE = YES; GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = PhoneManager/Info.plist; INFOPLIST_FILE = PhoneManager/Info.plist;
...@@ -864,7 +864,7 @@ ...@@ -864,7 +864,7 @@
CODE_SIGN_ENTITLEMENTS = PhoneManager/PhoneManager.entitlements; CODE_SIGN_ENTITLEMENTS = PhoneManager/PhoneManager.entitlements;
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3; CURRENT_PROJECT_VERSION = 4;
DEVELOPMENT_TEAM = 6K23946NQ5; DEVELOPMENT_TEAM = 6K23946NQ5;
GENERATE_INFOPLIST_FILE = YES; GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = PhoneManager/Info.plist; INFOPLIST_FILE = PhoneManager/Info.plist;
......
...@@ -50,8 +50,8 @@ class ADManager : NSObject, FullScreenContentDelegate { ...@@ -50,8 +50,8 @@ class ADManager : NSObject, FullScreenContentDelegate {
/// 记录插屏上次展示广告的时间 /// 记录插屏上次展示广告的时间
private var interstitiallastAdShowTime: Date? private var interstitiallastAdShowTime: Date?
private var currentVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "2.2.0" private var currentVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "2.2.1"
var onlineVersion = "1.1.0" var onlineVersion = "2.2.1"
/// 默认每日免费删除次数 /// 默认每日免费删除次数
......
...@@ -100,7 +100,7 @@ class HomePayView:UIView { ...@@ -100,7 +100,7 @@ class HomePayView:UIView {
lazy var animationView:LottieAnimationView = { lazy var animationView:LottieAnimationView = {
let animationView = LottieAnimationView(name: "iapAnimation") let animationView = LottieAnimationView(name: "OnboardingPaywallScreenAnimationLIGHT")
animationView.loopMode = .loop animationView.loopMode = .loop
return animationView return animationView
}() }()
...@@ -159,21 +159,21 @@ class HomePayView:UIView { ...@@ -159,21 +159,21 @@ class HomePayView:UIView {
titleLabel2?.sizeToFit() titleLabel2?.sizeToFit()
// self.addSubview(animationView) self.addSubview(animationView)
let webpImage = UIImageView() // let webpImage = UIImageView()
if let webpPath = Bundle.main.path(forResource: "pay_animation", ofType: "gif"), // if let webpPath = Bundle.main.path(forResource: "pay_animation", ofType: "gif"),
let webpURL = URL(string: "file://" + webpPath) { // let webpURL = URL(string: "file://" + webpPath) {
webpImage.kf.setImage(with: webpURL) // webpImage.kf.setImage(with: webpURL)
} // }
self.addSubview(webpImage) // self.addSubview(webpImage)
// playAnimationWithDelay() playAnimationWithDelay()
webpImage.snp.makeConstraints { make in animationView.snp.makeConstraints { make in
make.centerX.equalToSuperview() make.centerX.equalToSuperview()
make.top.equalTo(titleLabel2!.snp.bottom).offset(40) make.top.equalTo(titleLabel2!.snp.bottom).offset(20)
make.width.equalTo(285.RW()) make.width.equalTo(290.RW())
make.height.equalTo(142.RW()) make.height.equalTo(186.RW())
} }
appleLabel = UILabel() appleLabel = UILabel()
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment