我将 UISegmentedControl
添加到 UIToolbar
:
UIToolbar *toolbar = [[UIToolbar alloc] initWithFrame:toolbarFrame];
toolbar.barStyle = UIBarStyleBlack;
toolbar.translucent = YES;
toolbar.barTintColor = [UIColor colorWithRed:0.97 green:0.97 blue:0.97 alpha:1.0];
[self.view addSubview:toolbar];
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems[@"Last week", @"Last month", @"All time"];
[segmentedControl setSelectedSegmentIndex:0];
[toolbar addSubview:segmentedControl];
然后将工具栏添加到 View Controller 。当我截取 View Controller 的屏幕截图时,发生了一些奇怪的事情。所选片段的标题消失。
屏幕截图正在使用:
UIGraphicsBeginImageContextWithOptions(self.view.bounds.size, YES, [[UIScreen mainScreen] scale]);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
渲染 View :
截图:
从哪里开始寻找?
我换了
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
有
[self.view drawViewHierarchyInRect:self.view.bounds afterScreenUpdates:YES];
现在它按预期工作了。不过还是不明白为什么会这样。
请注意,drawViewHierarchyInRect:afterScreenUpdates:
仅适用于 iOS 7。
关于ios - 以编程方式截取屏幕截图时,UISegmentedControl 中选定段的标题消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21388335/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |