Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

Shaun Kelly
Shaun Kelly
5,648 Points

How do i access the scenes width and height in a class which is a subclass of NSObject or SKSpriteNode etc...

Here i have some code thats in side a class thats a subclass of SKSpriteNode and i can't access the screens width and heigh because the class is not a subclass of SKScene how do i access the screens dimensions in a different class to SKScene?....

@implementation Node
+(instancetype) createNode{


    SKSpriteNode *node= [SKSpriteNode spriteNodeWithColor:[SKColor redColor] size:CGSizeMake(100, 100)];
//the values in the position are invalid??
    node.position = CGPointMake(self.frame.size.width, self.frame.size.height);



}
@end