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
I have implement this library control and delegate but when i set my custom cell height it cannot take change my cell height so How to change custom cell height.
The text was updated successfully, but these errors were encountered:
(CGFloat)tableView:(UITableView _)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { return [expandableDelegate HeightForRow:indexPath]; } add this to expandabletableview m
-(NSInteger)HeightForRow:(NSIndexPath)indexPath;
to the delegate
and in the vc that the table view it is in
-(NSInteger)HeightForRow:(NSIndexPath*)indexPath
{
normal code
}
(CGFloat)tableView:(UITableView _)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { return [expandableDelegate HeightForRow:indexPath]; } add this to expandabletableview m
-(NSInteger)HeightForRow:(NSIndexPath)indexPath;
to the delegate
and in the vc that the table view it is in
-(NSInteger)HeightForRow:(NSIndexPath*)indexPath
{
normal code
}
I have implement this library control and delegate but when i set my custom cell height it cannot take change my cell height so How to change custom cell height.
The text was updated successfully, but these errors were encountered: