Created
July 17, 2013 08:35
-
-
Save mani95lisa/6018844 to your computer and use it in GitHub Desktop.
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
UIViewController * myViewController; | |
id delegate = [[UIApplication sharedApplication] delegate]; | |
UIWindow * win = [delegate window]; | |
myViewController = [[MyView alloc] init]; | |
// CGRect rect = CGRectMake(x,y,w,h); | |
// init the view position some how myViewController.viewFrame = rect; | |
[win addSubview:myViewController.view]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment