Using MonoTouch.Dialog is it possible to freeze the first/top row (like a table header)?
Thanks!!
Mojo
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are several similar (but for Objective-C) questions for this on stackoverflow – you might want to read them as some might suggest alternatives better fitted to what you want to achieve.
Short summary: This is not how
UITableViewCellworks and not even howUITableView– i.e. both the header and footer views of aUITableView[Cell]will scroll. Since MonoTouch.Dialog is based on them it inherits the same limitations (which meansElementandSectiontoo).The most common solution is to put a view before (header) or after (footer) the
UITableView, e.g.Note that this may not work (or require extra work) if you want to navigate with MonoTouch.Dialog and have only some tables showing an header.