1

我有一个 UIImagePicker,当您单击按钮时会显示它,尽管我最近添加了一个使用片段的选项,您可以在其中使用相机,尽管我似乎无法检查选择了哪个片段。这是我到目前为止得到的代码:

- (IBAction)addPicture:(id)sender {
    if (_photoControl.selected == 0) {
        CGRect rect = CGRectMake(0, 0, 753, 118);
        [popOverController presentPopoverFromRect:rect inView:self.view permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES];
    } else {

    }
}

虽然 if 语句总是正确的。

尽管我很困惑,但这可能真的很明显该怎么做。

提前致谢

4

1 回答 1

3

使用selectedSegmentIndex,不使用selected

于 2013-08-21T08:58:52.223 回答