You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 7, 2021. It is now read-only.
/*! * @discussion A method to find a @c field with its specific @c indexPath * @param fieldID The identifier for the field * @param includingHiddenFields A flag for whether look for hidden or collapsed fields or not*/
- (void)fieldWithID:(NSString *)fieldID
includingHiddenFields:(BOOL)includingHiddenFields
completion:(void (^)(FORMField *field,
NSIndexPath *indexPath))completion;
I can hide a section with:
Similarly, I can show a section with:
How can I determine if a section is hidden or visible? I want a button that will toggle the section to display or hide.
Additionally, how can I mark sections as hidden initially without resorting to the code above? That doesn't currently seem to be supported.
The text was updated successfully, but these errors were encountered: