【发布时间】:2012-02-10 09:45:46
【问题描述】:
我将答案中的代码复制到How do I apply a perspective transform to a UIView? 以实现以下图像。但是请注意,锯齿线分隔各个级别。是否有办法以消除锯齿状线条的方式执行这种透视变换?
编辑 我已经在这篇文章的 cmets 中尝试了 DarkDust 提供的解决方案。似乎没有一个工作。这是我的代码:
levelView = [[UIControl alloc] initWithFrame:CGRectMake(100, 60, 160, 230)];
[self addSubview:levelView];
levelView.transform = CGAffineTransformScale(self.transform, .8, .8);
CALayer *layer = levelView.layer;
//DarkDust's 2nd comment
layer.borderWidth = 1;
layer.borderColor = [[UIColor clearColor] CGColor];
CATransform3D rotationAndPerspectiveTransform = CATransform3DIdentity;
rotationAndPerspectiveTransform.m34 = 1.0 / 1000;
rotationAndPerspectiveTransform = CATransform3DRotate(rotationAndPerspectiveTransform, 45.0f * M_PI / 180.0f, 0.0f, 1.0f, 0.0f);
layer.transform = rotationAndPerspectiveTransform;
for (NSString *ID in [NSArray arrayWithObjects:@"Level 1", @"Level 2", @"Level 3", @"Level 4", @"Level 5", nil]) {
//Note the offset of 5 from the superview in both X and Y directions. This addresses DarkDusk's first comment
UIControl *ctrl = [[UIControl alloc] initWithFrame:CGRectMake(5, y + 5, levelView.frame.size.width, 220/5)];
[levelView addSubview:ctrl];
[ctrl addTarget:self action:@selector(languageSelected:) forControlEvents:UIControlEventTouchDown];
[self styleEnabled:ctrl];
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(13, 0, ctrl.frame.size.width - 13, ctrl.frame.size.height)];
[ctrl addSubview:label];
label.text = ID;
label.font = [UIFont systemFontOfSize:20];
label.textColor = [UIColor colorWithRed:1 green:1 blue:1 alpha:.8];
label.backgroundColor = [UIColor clearColor];
y += ctrl.frame.size.height;
}
你在图中看到的级别按钮都是UIControl的实例,它们是UIControl *levelView的直接子视图。 levelView 正在发生变化。
DarkDusk 的另外两个 cmets 专门指 UIImages,我没有使用它。如果它们仍然适用并且有人可以解释如何实现它们,我一定会试一试。
【问题讨论】:
-
查看副本。只需执行
layer.borderWidth = 1; layer.borderColor = [[UIColor clearColor] CGColor];,您可能会成功
标签: iphone ios cocoa-touch transform catransform3d