1.上代码:
MyFriendViewController*myFriendVc = [MyFriendViewController new];
[self addChildViewController:myFriendVc];
myFriendVc.view.frame = self.view.bounds;
[self.view addSubview:myFriendVc.view];
self.navigationItem.rightBarButtonItem = myFriendVc.navigationItem.rightBarButtonItem;
2.注意点:
(1)一定要addView,否则不会显示被加的vc的view的内容,不addview时相当于只加了controller,没有任何内容
(2)一定要重新设置被加的vc的view的frame,否则添加的位置会有问题
(3)导航栏的部分需要单独添加