淺談iOS經常使用的幾種傳值方式

1.屬性傳值(最經常使用的A傳B的方法) UIViewController *B = [UIViewController new]; B.title = @"B的標題"; [A.navigationController pushViewController:B animated:YES]; 一般用於正向傳值,適用於A和B相互具備必定關聯性。不能用於隔頁面傳值。並且,須要傳值的屬性不能是私有
相關文章
相關標籤/搜索