用动画重新加载子视图

我想单击按钮重新加载滚动视图。我还需要创建类似于推动新视图的动画,同时用新值重新加载滚动视图。 有任何想法吗 ?

更新 :

我有一个主要的类,我打电话给另一个viewcontroller:

  • (void)viewDidLoad {
    [super viewDidLoad];
    controller = [[abc alloc] initWithNibName:@“abc”bundle:nil];
    [self displayContentController:controller];
    }

  • (void)displayContentController:(UIViewController *)content; {
    [self addChildViewController:content];
    content.view.frame = CGRectMake(0,20,320,1048);
    [self.view addSubview:content.view];
    [内容didMoveToParentViewController:self];
    }

  • 一个按钮被添加到这个子视图。 我想创建一个新的子视图对象并将该视图重新加载到单击按钮上的主视图。 可能吗 !


    如果你想从表格视图重新加载数据,那么你可以使用方法(void)reloadSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation来实现这(void)reloadSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation ,你可以用动画重新加载。 在Apple Developer Documentation中查看可能的动画。

    如果这对你没有帮助,你需要修改你的问题。

    链接地址: http://www.djcxy.com/p/15385.html

    上一篇: Reload subview with animation

    下一篇: add UIViewController in subview