I have something like this:
myViewController = [[MyViewController alloc] initWithNibName:@"MyView" bundle:nil];
[mainCanvas addSubview: myViewController.view];
self.view = mainCanvas;
It will added on the position (0, 0), but I want to add on 0,100 or somewhere else, how can I do so? thank you.