[message setBackgroundColor:[UIColor redColor]];
[message setFrame:CGRectMake(message.frame.origin.x, message.frame.origin.y, message.frame.size.width, 20)];
背景色が変わるので IB の接続は問題ありませんが、UITextView のサイズは変わりません。複数の方法を試しましたが、位置やサイズを変更できません。
ボタンからアクションを実行すると機能しますが、didFinishPickingMediaWithInfo からのコールバックでは機能しません。
-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{
[picker dismissViewControllerAnimated:NO completion:^{
[UIView animateWithDuration:0.1
delay:0.0
options: UIViewAnimationCurveEaseOut // Doesnt really matter since its so fast
animations:^{
[message setFrame:CGRectMake(message.frame.origin.x, message.frame.origin.y, message.frame.size.width, 20)];
}
completion:^(BOOL finished){[message setBackgroundColor:[UIColor redColor]]; }];