Commit 58d501fb authored by shenyong's avatar shenyong

2.2.1被拘修改

parent cbded6a2
......@@ -816,7 +816,7 @@
CODE_SIGN_ENTITLEMENTS = PhoneManager/PhoneManager.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3;
CURRENT_PROJECT_VERSION = 4;
DEVELOPMENT_TEAM = 6K23946NQ5;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = PhoneManager/Info.plist;
......@@ -864,7 +864,7 @@
CODE_SIGN_ENTITLEMENTS = PhoneManager/PhoneManager.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3;
CURRENT_PROJECT_VERSION = 4;
DEVELOPMENT_TEAM = 6K23946NQ5;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = PhoneManager/Info.plist;
......
......@@ -50,8 +50,8 @@ class ADManager : NSObject, FullScreenContentDelegate {
/// 记录插屏上次展示广告的时间
private var interstitiallastAdShowTime: Date?
private var currentVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "2.2.0"
var onlineVersion = "1.1.0"
private var currentVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "2.2.1"
var onlineVersion = "2.2.1"
/// 默认每日免费删除次数
......
......@@ -100,7 +100,7 @@ class HomePayView:UIView {
lazy var animationView:LottieAnimationView = {
let animationView = LottieAnimationView(name: "iapAnimation")
let animationView = LottieAnimationView(name: "OnboardingPaywallScreenAnimationLIGHT")
animationView.loopMode = .loop
return animationView
}()
......@@ -159,21 +159,21 @@ class HomePayView:UIView {
titleLabel2?.sizeToFit()
// self.addSubview(animationView)
self.addSubview(animationView)
let webpImage = UIImageView()
if let webpPath = Bundle.main.path(forResource: "pay_animation", ofType: "gif"),
let webpURL = URL(string: "file://" + webpPath) {
webpImage.kf.setImage(with: webpURL)
}
self.addSubview(webpImage)
// let webpImage = UIImageView()
// if let webpPath = Bundle.main.path(forResource: "pay_animation", ofType: "gif"),
// let webpURL = URL(string: "file://" + webpPath) {
// webpImage.kf.setImage(with: webpURL)
// }
// self.addSubview(webpImage)
// playAnimationWithDelay()
webpImage.snp.makeConstraints { make in
playAnimationWithDelay()
animationView.snp.makeConstraints { make in
make.centerX.equalToSuperview()
make.top.equalTo(titleLabel2!.snp.bottom).offset(40)
make.width.equalTo(285.RW())
make.height.equalTo(142.RW())
make.top.equalTo(titleLabel2!.snp.bottom).offset(20)
make.width.equalTo(290.RW())
make.height.equalTo(186.RW())
}
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