So I've been trying to make all my objects the correct size for both IPad and IPhone by using proportions based on the size of the screen. But I've been having trouble doing it with objects such as the SKLabelNode, due to it using fontSize instead of a (width, height) format. Say I wanted to make this SKLabelNode of fontSize 35 on IPhone 6, how would I use proportions to make it the same size relative to the screen for the IPad 2 so that it works for both the IPhone AND IPad?
SKLabelNode *myLabel2;
myLabel2 = [SKLabelNode labelNodeWithFontNamed:@"HelveticaNeue-Light"];
myLabel2.text=@"Click";
myLabel2.fontSize = 35;