ios - Popover in CollectionView -


I am using UICollectionView , when I click on the cell, a popup will appear In that popup I have a UITextView which is programmatically created. I've given that TextView frame ...

  Self. MyTextView.frame = CGRectMake (50, 62, 200, 321);  

! [Enter image details here] [1]

When I click on Textview then the popup is running like this ...

Please help ....

Use an autoresizing mask for you Can simplicity:

  self.myTextView.autoresizingMask = UIViewAutoresizingFlexibleHeight;  

Comments

Popular posts from this blog

java - Can't add JTree to JPanel of a JInternalFrame -

javascript - data.match(var) not working it seems -

javascript - How can I pause a jQuery .each() loop, while waiting for user input? -