increase uitableviewcell height simultaneously increasing the inner UITextView

前端 未结 8 1544
花落未央
花落未央 2021-02-02 17:13

I create a UITableView with different types of UITableViewCell depending on the type of content to display. One of this is a UITableViewCell

相关标签:
8条回答
  • 2021-02-02 17:29
    - (void)textViewDidChange:(UITextView *)textView
    {
        UITableViewCell *cell = (UITableViewCell*)textView.superview.superview;
    
        if (cell.frame.size.height < textView.contentSize.height) {
            [self.tableView beginUpdates];
            CGRect frame = textView.frame;
            frame.size.height = textView.contentSize.height;
            textView.frame = frame;
            CGRect cellFrame = cell.frame;
            cellFrame.size.height = textView.frame.size.height;
            cell.frame = cellFrame;
            [self.tableView endUpdates];
        }
    
    }
    
    0 讨论(0)
  • 2021-02-02 17:29

    I would not bother with cells height using method

    (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
    

    and rather made your view text field delegate and handle the following event in a way shown below:

    - (void) textFieldDidResize:(id)sender
    {
              [self.tableView beginUpdates];
              [self.tableView endUpdates];
    }
    

    Also make sure that you did the following:

    yourInputField.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
    

    Then, the only one thing you need is to resize your text field. Your cells in tableview will adopt to the size of inner text field. Just add it as subview to cell.contentView.

    0 讨论(0)
  • 2021-02-02 17:31

    Siba Prasad Hota's code probably will do the trick (You need reference to table view from cell level), but I have another, longer approach. I always do such stuff in this way, because I like to have all things separated (MVC pattern). If I were You, I would do this like that (code from head):

    Cell parent protocol:

    @protocol CellParent <NSObject>
    @required
    @property (nonatomic, strong) UITableView *tableView;
    @end
    

    Cell model:

    @interface CellModel
    @property (nonatomic, assign) BOOL hasTextView;
    @property (nonatomic, strong) NSString *textViewContent;
    -(float)getCurrentHeightForCell;//implement calculating current height of cell. probably     2 * SOME_MARGIN + height of temporary textView with textViewContent variable
    

    Cell

    @interface MyCell
    @property (nonatomic, strong) CellModel *dataModel;
    @property (nonatomic, weak) id<CellParent> parent;
    @property (nonatomic, strong) UITextView *textView;
    - (id)initWithStyle:(UITableViewCellStyle)style andModel:(CellModel*) model;
    

    with implementations like this:

    (id)initWithStyle:(UITableViewCellStyle)style andModel:(CellModel*) model
    {
        self = [super initWithStyle:style reuseIdentifier:@"MyCell"];
        if (self) 
        {
            [[NSBundle mainBundle] loadNibNamed:@"MyCell" owner:self options:nil];
            self.dataModel = model;
        }
        return self;
    }
    
    
    -(void) setDataModel:(CellModel *)dataModel
    {
        _dataModel = dataModel;
        if(_dataModel.hasTextView)
        {
            //show text view
        }
        else
        {
            //hide text view
        }
        //do other cell modifications
    }
    
    -(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text 
    {
        self.dataModel.textViewContent = textView.text;
        [self.parent.tableView beginUpdates];
        [self.parent.tableView endUpdates];
        return YES;
    }
    

    Controller with table view

    -(UITableViewCell*) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {  
        MyCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyCell"];
        if (cell == nil) 
        {
            cell = [[MyCell alloc] initWithStyle:UITableViewCellStyleDefault andModel:          [self.cellsModels objectAtIndex:indexPath.row]];
        }
        cell.dataModel = [self.cellsModels objectAtIndex:indexPath.row];
        cell.parent = self;
        return cell;
    }
    
    -(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath     *)indexPath
    {
        return [((CellModel*)[self.tableContentArray objectAtIndex:indexPath.row]) getCurrentHeightForCell];
    }
    
    0 讨论(0)
  • 2021-02-02 17:32

    To resize the cells you would use code similar to this

    - (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text {
        NSString *newText = [textView.text stringByReplacingCharactersInRange:range withString:text];
        CGSize size = // calculate size of new text
    CGRect frame = textView.frame;
    frame.size.height = textView.contentSize.height;
    textView.frame = frame;
    
        if ((NSInteger)size.height != (NSInteger)[self tableView:nil heightForRowAtIndexPath:nil]) {
    
            // if new size is different to old size resize cells. 
    
    
            [self.tableView beginUpdates];
            [self.tableView endUpdates];
        }
        return YES;
    }
    
    0 讨论(0)
  • 2021-02-02 17:34

    You should calculate newHeight for cell before loading cell. Instead of calculating newHeight in textViewDidChange, calculate it in heightForRowAtIndexPath and return same as

    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
    {
      if ([current_field.tipo_campo isEqualToString:@"text_area"])
      {
          NSString *string = current_field.valore;
          CGSize stringSize = [string sizeWithFont:[UIFont boldSystemFontOfSize:15] constrainedToSize:CGSizeMake(320, 9999) lineBreakMode:UILineBreakModeWordWrap];
          CGFloat height = ([string isEqualToString:@""]) ? 30.0f : stringSize.height+10;
    
          return height + 10.0f;
      }
      else
      {
          return 44.0f;
      }
    }
    
    0 讨论(0)
  • 2021-02-02 17:37

    I have created one demo for your problem, hope will help you.

    My idea of solution is using AutoResizingMask of UITextView.

    My .h file

    #import <UIKit/UIKit.h>
    
    @interface ViewController : UIViewController<UITabBarDelegate, UITableViewDataSource, UITextViewDelegate>{
        IBOutlet UITableView *tlbView;
        float height;
    }
    
    @end
    

    And my .m file (Includes only required methods)

    - (void)viewDidLoad
    {
        [super viewDidLoad];
    
        // Do any additional setup after loading the view, typically from a nib.
        height = 44.0;
    }
    
    - (void)textViewDidChange:(UITextView *)textView{
        [tlbView beginUpdates];
        height = textView.contentSize.height;
        [tlbView endUpdates];
    }
    
    #pragma mark - TableView datasource & delegates
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
        return 1;
    }
    
    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
        if (indexPath.row==0) {
            if (height>44.0) {
                return height + 4.0;
            }
        }
        return 44.0;
    }
    
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
        UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"CellIdentifier"];
    
        UITextView *txtView = [[UITextView alloc] initWithFrame:CGRectMake(0.0, 2.0, 320.0, 40.0)];
        [txtView setDelegate:self];
        [txtView setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight]; // It will automatically resize TextView as cell resizes.
        txtView.backgroundColor = [UIColor yellowColor]; // Just because it is my favourite
        [cell.contentView addSubview:txtView];
    
        return cell;
    }
    

    Hope it will help you out.

    0 讨论(0)
提交回复
热议问题