我不知道如何处理动画,我希望在半透明视图中淡入淡出,并在点击背景时将其关闭,就像 Tumblr 应用程序在他们的撰写屏幕上一样。
这就是我到目前为止所拥有的。它添加了半透明视图,但没有像 Tumblr 那样的淡入淡出效果。
UIView *modalView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
[modalView setOpaque: NO];
[modalView setBackgroundColor: [UIColor colorWithAlphaComponent: 0.9];
[[self view] addSubview: modalView];