, "nil".
If you want the view to be in place, you can highlight the custom view in this method and make it return that view.
For example, if you want the image to be the title for this section, you should do something like:
[view addSubview:pictureView];
return view;
This will return this view for the section whose index you passed.
source
share