didMoveToSuperview没有被调用

时间:2016-10-16 19:18:29

标签: ios objective-c uiview

我正在向UIView添加UIScrollView

滚动视图上的

willMoveToSuperview:被调用,但由于某些原因,即使滚动视图明显被添加,滚动视图上的didMoveToSuperview:也不会被调用。

我觉得我必须遗漏一些明显的东西?

1 个答案:

答案 0 :(得分:1)

你可能错误输入the method signature

- (void)didMoveToSuperview {
  [super didMoveToSuperview];
}