Skip to content

Commit 4b85e7b

Browse files
committed
屏蔽掉假的weather数据
Change-Id: Idff880ef7c7990de44e04f984162d6923ae815d6
1 parent f711911 commit 4b85e7b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ PODS:
124124

125125
DEPENDENCIES:
126126
- FDFullscreenPopGesture (= 1.1)
127-
- Firebase/Analytics
128-
- Firebase/Crashlytics
129-
- Firebase/Performance
127+
- Firebase/Analytics (= 6.31.1)
128+
- Firebase/Crashlytics (= 6.31.1)
129+
- Firebase/Performance (= 6.31.1)
130130
- IQKeyboardManager (= 6.1.1)
131131
- KeychainAccess (= 4.2.0)
132132
- Masonry (= 1.1.0)
@@ -212,6 +212,6 @@ SPEC CHECKSUMS:
212212
TZImagePickerController: bf4c57b98d8707fce41ea6be872414a71c7a8c9d
213213
YYModel: 2a7fdd96aaa4b86a824e26d0c517de8928c04b30
214214

215-
PODFILE CHECKSUM: cfa96693a771ba139ff90439b6185ac15e442c81
215+
PODFILE CHECKSUM: eff53b2f306542c01260d52cf6e5290a8d104dc6
216216

217217
COCOAPODS: 1.9.3

Source/LinkApp/Classes/Module/Home/Controller/TIoTHomeViewController.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#import "TIoTNewVersionTipView.h"
3434
#import "NSString+Extension.h"
3535

36-
static CGFloat weatherHeight = 60;
36+
static CGFloat weatherHeight = 10;
3737

3838
@interface TIoTHomeViewController ()<UITableViewDelegate,UITableViewDataSource,CMPageTitleContentViewDelegate,UIPopoverPresentationControllerDelegate>
3939

@@ -802,7 +802,7 @@ - (UIView *)navView
802802

803803

804804
self.weatherLab = [[UILabel alloc] init];
805-
self.weatherLab.attributedText = [self handleWeather];
805+
// self.weatherLab.attributedText = [self handleWeather];
806806
[weatherView addSubview:self.weatherLab];
807807
[self.weatherLab mas_makeConstraints:^(MASConstraintMaker *make) {
808808
make.leading.mas_equalTo(16);
@@ -861,7 +861,7 @@ - (UIView *)navView2
861861

862862

863863
UILabel *wea = [[UILabel alloc] init];
864-
wea.attributedText = [self handleWeather];
864+
// wea.attributedText = [self handleWeather];
865865
[weatherView2 addSubview:wea];
866866
self.weatherLab2 = wea;
867867
[wea mas_makeConstraints:^(MASConstraintMaker *make) {

0 commit comments

Comments
 (0)