dismissModalViewControllerAnimated deprecated

前端 未结 6 1906
猫巷女王i
猫巷女王i 2020-11-28 02:55

I\'ve just upgraded to XCode 4.5 to update my iOS app to run on the 4 inch display for the iPhone 5, but I\'m getting a build error saying dismissModalViewControllerAn

6条回答
  •  一生所求
    2020-11-28 03:16

    Now in iOS 6 and above, you can use:

    [[Picker presentingViewController] dismissViewControllerAnimated:YES completion:nil];
    

    Instead of:

    [[Picker parentViewControl] dismissModalViewControllerAnimated:YES];
    

    ...And you can use:

    [self presentViewController:picker animated:YES completion:nil];
    

    Instead of

    [self presentModalViewController:picker animated:YES];    
    

提交回复
热议问题