I think that when I add a view as a subview like such:
UIView* view = [[UIView alloc] init];
[self addSubview:view];
[view release];
that it's safe to release the view afterwards...is it the same for a CALayer object? If I create a CALayer using alloc/init, and do:
[self.layer addSublayer:layer];
is it safe to do a release of the layer afterwards?