-(void)gotoGenderSelectionController {
LDGenderSelectionController *genderVC = [LDGenderSelectionController new];
genderVC.modalPresentationStyle = UIModalPresentationFullScreen;
@weakify(self)
[genderVC setCompleteBlock:^{
@strongify(self)
[self gotoMainRootViewController];
}];
[self presentViewController:genderVC animated:YES completion:nil];
}
网友评论