Commit 3fbef179 by pidan

fixed bugs

parent d6550f93
......@@ -77,12 +77,12 @@ static const NSString *FUSCidUDKey = @"FUSCidUDKey";
/// App Version
- (NSString *)appVersion {
return @"7720";
return @"7740";
}
/// App Dot Version
- (NSString *)appDotVersion {
return @"7.7.2.0";
return @"7.7.4.0";
}
/// App Id
......
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "我的-添加視頻-關閉icon@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
......@@ -105,7 +105,8 @@
case CID_NEWS_FEED_MESSAGE: // 动态互动消息
case CID_NEWS_FEED_PUBLISH: // 动态发布消息通知
{
// 暂时不要分享信息
break;
NSDictionary *newsFeedMsgDict = [messageModel fus_getJsonDict];
[FUSRouter.userRouter fus_writeDataToNewsFeedMessageTableWithDict:newsFeedMsgDict];
NSMutableArray *newsFeedModelArray = [NSMutableArray arrayWithArray:self.classifyMessageDict[FUSChatPublicDefine.fus_newsfeedMsgType]];
......
......@@ -338,8 +338,9 @@
messageModel.cid == CID_NOTIFICATION_MESSAGE ||
messageModel.cid == CID_YABO_ACCOMPANY ||
messageModel.cid == CID_SINGLE_LIVE_UNUSUAL ||
messageModel.cid == CID_NEWS_FEED_MESSAGE ||
messageModel.cid == CID_NEWS_FEED_PUBLISH) {
messageModel.cid == CID_NEWS_FEED_MESSAGE
// || messageModel.cid == CID_NEWS_FEED_PUBLISH
) {
if (![[[NSUserDefaults standardUserDefaults] objectForKey:FUSUserUDKeys.fus_DYNAMIC_ENTRANCE_SHOW_SHWITCH] boolValue]
&& !FUSConfig.sharedInstanced.devConfigs.appStatus
......
......@@ -180,7 +180,7 @@
model.oldSpeaking = NO;
self.transform = CGAffineTransformMakeScale(1.f, 1.f);
[self fus_stopRadarAnimation];
[NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(fus_stopHeaderViewRadarAnimation) object:self];
// [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(fus_stopHeaderViewRadarAnimation) object:self];
}
// 富豪等级
......
......@@ -643,7 +643,7 @@
- (void)fus_dealListDataModels:(NSArray *)models{
NSDictionary *tempDict = self.modelInfo;
// [self.modelInfo removeAllObjects];
[self.modelInfo removeAllObjects];
for (FUSLinkMicroModel *model in models) {
FUSLinkMicroModel *oldModel = tempDict[model.uid];
if (oldModel) {
......@@ -1656,21 +1656,13 @@
for (FUSLinkMicroModel *model in _models) {
if ([speakers containsObject:model.uid]){
if (!model.isSpeaking) {
hasChanged = YES;
model.isSpeaking = YES;
}
} else {
if (model.isSpeaking) {
hasChanged = YES;
model.isSpeaking = NO;
}
}
}
if (hasChanged) {
[self fus_updateHeaderViewSizeWithModels:_models];
}
}
- (void)fus_agoraHelper:(FUSAgoraHelper *)helper remoteVideoStateChangedOfUid:(NSUInteger)uid state:(AgoraVideoRemoteState)state{
......
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 sign in to comment