Skip to content

Instantly share code, notes, and snippets.

@mani95lisa
Created July 17, 2013 08:35
Show Gist options
  • Save mani95lisa/6018844 to your computer and use it in GitHub Desktop.
Save mani95lisa/6018844 to your computer and use it in GitHub Desktop.
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