自定义委托类

时间:2013-02-25 20:41:00

标签: ios delegates uiimagepickercontroller

再次使用现有代码。 ViewFinderManager是委托类。屏幕以模态呈现。但是我无法使用导航栏上的取消和完成按钮。

AlbumPickerViewController *apVC = [[AlbumPickerViewController alloc] init];
OMWUINavigationController *navC = [[OMWUINavigationController alloc] initWithRootViewController:apVC];
[self presentModalViewController:navC animated:YES];
[[ViewFinderManager sharedInstance] addListener:self];

AlbumPickerViewController中的按钮:

self.navigationItem.rightBarButtonItem = [UIBarButtonItem buttonSquareEdgeButtonWithTitle:@"done" color:[UIColor blueColor] target:self action:@selector(doneHandler)];

doneHandler:

- (void)doneHandler {
   [[ViewFinderManager sharedInstance] endPicking];
}

如何完成按钮工作。同一行上也有一个取消按钮。 将self添加为侦听器也是正确的吗?

如果我在这里遗漏了一些信息,请告诉我。

0 个答案:

没有答案