Skip to content

Instantly share code, notes, and snippets.

@pmark
Created July 12, 2011 00:22
Show Gist options
  • Save pmark/1077110 to your computer and use it in GitHub Desktop.
Save pmark/1077110 to your computer and use it in GitHub Desktop.
Changing 3DAR's frame size and logo position
// 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