Skip to content

Commit

Permalink
已知问题修复-3.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jinrun committed Dec 8, 2023
1 parent 7e07f07 commit 9495834
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 2 deletions.
Binary file modified .DS_Store
Binary file not shown.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,3 +254,12 @@ the server cannot be made."这样的问题。
更新内容:

在代码层,下掉了idfa获取代码

# 3.3.6 版本更新
微博移动SDK3.3.6具体变动如下,请开发者尽快更新。

1. 修复了已知的功能问题
2. 优化了已知的安全合规问题



13 changes: 11 additions & 2 deletions WeiboSDKDemo/SendMessageToWeiboViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,18 @@ - (void)viewDidLoad
[scrollView setContentSize:CGSizeMake(self.view.frame.size.width, self.view.frame.size.height)];


self.titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 100)];
self.titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 10, 320, 40)];
self.titleLabel.textAlignment = NSTextAlignmentCenter;
self.titleLabel.numberOfLines = 3;
[scrollView addSubview:self.titleLabel];
self.titleLabel.text = NSLocalizedString(@"微博SDK示例", nil);

UILabel *versonLb = [[UILabel alloc] initWithFrame:CGRectMake(0, 50, self.view.frame.size.width, 12)];
versonLb.font = [UIFont systemFontOfSize:12];
versonLb.text = [NSString stringWithFormat:@"v-%@",[WeiboSDK getSDKVersion]];
versonLb.textAlignment = NSTextAlignmentCenter;
[scrollView addSubview:versonLb];

UILabel *loginTextLabel = [[UILabel alloc] initWithFrame:CGRectMake(15, 70, 290, 20)];
loginTextLabel.text = NSLocalizedString(@"登录:", nil);
loginTextLabel.backgroundColor = [UIColor clearColor];
Expand Down Expand Up @@ -502,7 +508,10 @@ - (void)shareMessageToVideo{
message.videoObject = videoObject;
self.messageObject = message;
}else{
NSLog(@"获取livePhoto资源出错");
dispatch_async(dispatch_get_main_queue(), ^{
[self.indicatorView stopAnimating];
[self alertControllerWithTitle:@"提示" message:@"获取相册视频出错,试试换其它一个视频" cancelBtnTitle:NSLocalizedString(@"确定", nil) sureBtnTitle:nil];
});
}
}];
}];
Expand Down
Binary file modified libWeiboSDK/.DS_Store
Binary file not shown.
Binary file modified libWeiboSDK/libWeiboSDK.a
Binary file not shown.

0 comments on commit 9495834

Please sign in to comment.