Can I add a border to an SKSpriteNode, similar to UIView?
border, cocoa-touch, ios, sprite-kit
Solution
Not natively. Though you can just add a SKShapeNode as child whose `path` you create with `CGPathCreateWithRoundedRect`.
Problem
I'm interested if an `SKSpriteNode` can be made to imitate the behavior of a `UIView` where I can specify border and corner radius? ``` self.view.layer.borderColor = [UIColor lightGrayColor].CGColor; self.view.layer.borderWidth = 2; self.view.layer.cornerRadius = 2; self.view.layer.masksToBounds = YES; ```