我已在代码中阅读此内容 代码如下
- (UIView *)headerView
{
// your code for the function
}
在这段代码中函数的返回类型是什么? 是UIView ......?
答案 0 :(得分:3)
是的,它将返回 UIView
例如:
在viewDidAppear
方法
UIView *view = [self returnView];
和returnView
函数是:
-(UIView *) returnView{
// your function code
// for now you may test it as
return self.view;
}