comme le titre l'indique, j'essaie d'ajouter un comportement de type remplissage à un UITextView. La vue textuelle est générée lorsque la vue est poussée dans mon contrôleur de navigation et que le code suivant se produit :
self.textView.layer.cornerRadius = 7;
//pretty stuff is pretty
NSString *description = appDelegate.productInDisplay.description;
[self.textView setText:description];
//pretty stuff has content now
CGRect frame = textView.frame;
frame.size.height = textView.contentSize.height;
textView.frame = frame;
//set the UITextView to the size of it's containing text.
self.textView.editable = NO;
self.theScrollView.contentSize = CGSizeMake(320, 250 + textView.frame.size.height);
//set the parent scrollView's height to fit some other elements with fixed size (250)
//and the pre-mentioned UITextView
donc, tout fonctionne et tout va bien, mais je veux ajouter un peu de rembourrage sur les 4 côtés de UITextView et je n'ai pas pu le faire avec 3 heures de recherche sur Google pour quelque chose qui semble plutôt facile. Aucune suggestion?