Tag: ios6presentviewcontroller

从UIView使用presentViewController

我正在为我的iOS应用程序创build一个标题栏,我正在UIView内。 我唯一的问题是“主页button”。 当主页button被按下时,它需要到主页,这是ViewController。 但是,它看起来不像是[self presentViewController:vc animated:NO completion:NULL]; 适用于UIView。 我该如何解决这个问题? – (void) createTitlebar { CGRect titleBarFrame = CGRectMake(0, 0, 320, 55); //Create the home button on the top right of the page. When clicked, it will navigate to the home page of the application homeButton = [UIButton buttonWithType:UIButtonTypeCustom]; homeButton.frame = CGRectMake(275, 10, 40, 40); [homeButton setTag:1]; […]