7

EKEventEditViewController在我的应用程序中使用默认值,我想对其进行自定义,目前它显示了默认值中的所有字段EKEventEditViewController,但我不想显示 URL 字段,也想添加时区字段。我可以这样做吗?如果可以,请告诉我该怎么做? 在此处输入图像描述

4

1 回答 1

4

你可以使用这个摘录:

1)使您的视图控制器成为您的 EKEventEditViewController 的代表

EKEventEditViewController *addController = [[EKEventEditViewController alloc] init];
addController.delegate = self;

2)然后在您的视图控制器上实现它:

- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated {
    if ([viewController isKindOfClass:[UITableViewController class]]) {
        UITableView *tableView = ((UITableViewController *)viewController).tableView;

    for (NSInteger j = 0; j < [tableView numberOfSections]; ++j)
    {
        for (NSInteger i = 0; i < [tableView numberOfRowsInSection:j]; ++i)
        {
            UITableViewCell *cell = [tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:i inSection:j]];

            NSLog(@"cell => %@, row => %d, section => %d", cell.textLabel.text, i, j);

            if([cell.textLabel.text isEqualToString:@"Calendar"]) {
                [cell removeFromSuperview];
            } else if(j == 5) { // If URL Field
                [cell removeFromSuperview];
            }
        }
    }
}

}

注意:我之前在另一个 Stackoverflow 答案中发现了这一点,并在我的项目中实现了它。我忘记了链接。希望这会有所帮助,并感谢我得到这个的原始答案。

于 2013-02-21T03:27:01.203 回答