- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在学习有关 Core Animation 书籍的教程,并尝试执行以下操作。
@interface ViewController ()
@property (nonatomic, weak) IBOutlet UIView * layerView;
@property (nonatomic, weak) CALayer *blueLayer;
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
self.blueLayer = [CALayer layer];
self.blueLayer.frame = CGRectMake(50.0f, 50.0f, 100.0f, 100.0f);
self.blueLayer.backgroundColor = [UIColor blueColor].CGColor;
[self.layerView.layer addSublayer: self.blueLayer];
}
...
@end
根据这本书,上面的代码应该在 layerView
顶部中间的屏幕上打印一个蓝色层。但是,我只能看到 layerView
而 blueLayer
是看不到的。有谁知道发生了什么事?我迷路了。
最佳答案
你应该在这一行收到警告
self.blueLayer = [CALayer layer];
由于 self.bluelayer
是一个弱指针,ARC 将在对象创建后立即将其丢弃。该属性应声明为 strong
。
关于ios - addSublayer 不在 View 上添加任何子层,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22584780/
我正在尝试向我的 View 添加渐变,并将以下内容添加到 drawRect: CAGradientLayer *g = [[CAGradientLayer alloc]init]; g.frame =
我无法将 CAlayer 中的图像显示在 imageView 中。我可以让它与 CAGradientLayer 一起工作,但是当我将它更改为带有图像的 CALayer 时,似乎没有任何效果。如果框架被
我认为当我像这样添加一个 View 作为 subview 时: UIView* view = [[UIView alloc] init]; [self addSubview:view]; [view
我正在学习有关 Core Animation 书籍的教程,并尝试执行以下操作。 @interface ViewController () @property (nonatomic, weak) IBO
我写这段代码: let myAttributes = [ NSAttributedStringKey.font: UIFont(name: "Avenir-HeavyOblique", siz
如何在同一个 UIView 中正确使用这两个? 我有一个自定义子类 CALayer,我在其中绘制了 drawInContext 中的图案 我有另一个,我在其中设置了一个覆盖 PNG 图像作为内容。 我
问题 如何为您的图层创建单独的上下文并将该上下文合并到 super 图层中? 为什么我要这样做 我想将 View 层的绘制抽象为单独的对象/文件。我想用图层构建一个 View ,然后将其放置在另一个
当我按照以下方式编写代码时.. - (void)drawRect:(CGRect)rect { CGContextRef context = UIGraphicsGetCurrentConte
当我绘制图形并将其添加到 Controller 的 View 时,图形显示正确。 CAShapeLayer *shapeLayer = [CAShapeLayer layer]; self.curre
我正在为 CAGradient 设置动画 let gradientChangeAnimation = CABasicAnimation(keyPath: "colors") gradientC
下面是我用来通过 -addSublayer 将 UIButton 添加到层的代码: CAGradientLayer * tile = [[tile alloc] init]; UIButto
我是一名优秀的程序员,十分优秀!