修复等级bug
This commit is contained in:
2
Podfile
2
Podfile
@@ -49,7 +49,7 @@ target 'xplan-ios' do
|
||||
pod 'mob_sharesdk/ShareSDKPlatforms/WeChat_Lite'
|
||||
pod 'mob_sharesdk/ShareSDKPlatforms/Apple'
|
||||
pod 'mob_sharesdk/ShareSDKExtension'
|
||||
pod 'SVGAPlayer', '~> 2.3'
|
||||
pod 'SVGAPlayer'
|
||||
# 滑动标签栏
|
||||
pod 'JXCategoryView'
|
||||
pod 'JXPagingView/Pager'
|
||||
|
@@ -153,7 +153,7 @@ DEPENDENCIES:
|
||||
- mob_sharesdk/ShareSDKPlatforms/WeChat_Lite
|
||||
- NIMSDK_LITE (~> 8.9.0)
|
||||
- NTESQuickPass
|
||||
- pop
|
||||
- pop (~> 1.0.12)
|
||||
- QGVAPlayer
|
||||
- Qiniu
|
||||
- QY_NIM_iOS_SDK (~> 6.6.1)
|
||||
@@ -162,7 +162,7 @@ DEPENDENCIES:
|
||||
- SDWebImage
|
||||
- SDWebImageFLPlugin
|
||||
- SSKeychain
|
||||
- SVGAPlayer (~> 2.3)
|
||||
- SVGAPlayer
|
||||
- SZTextView
|
||||
- TXLiteAVSDK_TRTC (~> 11.4.14530)
|
||||
- TZImagePickerController
|
||||
@@ -271,6 +271,6 @@ SPEC CHECKSUMS:
|
||||
YYText: 5c461d709e24d55a182d1441c41dc639a18a4849
|
||||
YYWebImage: 5f7f36aee2ae293f016d418c7d6ba05c4863e928
|
||||
|
||||
PODFILE CHECKSUM: f44d894b616b0165722154f819e116f0d23597ff
|
||||
PODFILE CHECKSUM: 0f2e29ba8c875f839292918f612c6ec567ad4318
|
||||
|
||||
COCOAPODS: 1.12.1
|
||||
|
@@ -31,7 +31,7 @@
|
||||
</Testables>
|
||||
</TestAction>
|
||||
<LaunchAction
|
||||
buildConfiguration = "Debug"
|
||||
buildConfiguration = "Release"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
launchStyle = "0"
|
||||
|
@@ -133,7 +133,7 @@
|
||||
if(charmList.count == 2){
|
||||
NSString *charmUrl = charmList[1];
|
||||
for (int i = 0;i < 110; i++) {
|
||||
NSString *num = i < 10 ? [NSString stringWithFormat:@"0%d",i+1] : [NSString stringWithFormat:@"%d",i+1];
|
||||
NSString *num = i < 9 ? [NSString stringWithFormat:@"0%d",i+1] : [NSString stringWithFormat:@"%d",i+1];
|
||||
if([charmUrl containsString:num]){
|
||||
getUrl = [NSString stringWithFormat:@"new_charm_%@",num];
|
||||
break;
|
||||
@@ -153,7 +153,7 @@
|
||||
if(wealthList.count == 2){
|
||||
NSString *wealthUrl = wealthList[1];
|
||||
for (int i = 0;i < 110; i++) {
|
||||
NSString *num = i < 10 ? [NSString stringWithFormat:@"0%d",i+1] : [NSString stringWithFormat:@"%d",i+1];
|
||||
NSString *num = i < 9 ? [NSString stringWithFormat:@"0%d",i+1] : [NSString stringWithFormat:@"%d",i+1];
|
||||
if([wealthUrl containsString:num]){
|
||||
getUrl = [NSString stringWithFormat:@"new_exper_%@",num];
|
||||
break;
|
||||
|
Reference in New Issue
Block a user