Created
July 12, 2011 00:22
-
-
Save pmark/1077110 to your computer and use it in GitHub Desktop.
Changing 3DAR's frame size and logo position
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Changing 3DAR's frame will position the logo. | |
CGRect new3darFrame = CGRectMake(0, 0, 160, 240); | |
[sm3dar setFrame:new3darFrame]; | |
// You can also set the icon's position directly. | |
sm3dar.iconLogo.center = CGPointMake(10, 10); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment