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 -

asp.net mvc - How to attach sql database to a javascript graph -

c# - How to know the number of Threads created and limit the Tasks accordingly -