```
__weak typeof(self) weakSelf = self;
self.bootomShoppingCartsVC.popVC = ^(BOOL pop)
{
typeof(weakSelf) __strong strongSelf = weakSelf;
if (pop)
{
UIViewController *viewCtl = strongSelf.navigationController.viewControllers[2];
[strongSelf.navigationController popToViewController:viewCtl animated:YES];;
}
};
```
网友评论