Skip to content

Commit

Permalink
iOS Xiaozhibo Update 8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jiruizhang committed Nov 13, 2020
1 parent 12cd2b1 commit 34ee321
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ - (id)initWithPlayInfo:(TCRoomInfo *)info videoIsReady:(videoIsReadyBlock)videoI
_log_switch = NO;

_rtmpUrl = self.liveInfo.hls_play_url;
if (_rtmpUrl == nil || ![_rtmpUrl isKindOfClass:[NSString class]] || _rtmpUrl.length == 0 ) {
if (_rtmpUrl == nil || ![_rtmpUrl isKindOfClass:[NSString class]]) {
_rtmpUrl = self.liveInfo.playurl;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,10 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
TCUserInfoTableViewCell *cell = (TCUserInfoTableViewCell*)[tableView dequeueReusableCellWithIdentifier:@"cell"];
if(cell == nil)
{
cell = [[TCUserInfoTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
cell = [[TCUserInfoTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
[cell initUserinfoViewCellData:item];
cell.backgroundColor = UIColor.whiteColor;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}

[cell drawRichCell:item];
Expand Down
4 changes: 2 additions & 2 deletions iOS/XiaoZhiBoApp/XiaoZhiBoApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>7.9.0</string>
<string>8.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand Down Expand Up @@ -52,7 +52,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>604</string>
<string>614</string>
<key>IMSDKCrashReporterEnable</key>
<string>NO</string>
<key>LSApplicationQueriesSchemes</key>
Expand Down

0 comments on commit 34ee321

Please sign in to comment.