我想知道如何实现类似于用户profileimage在textview中的内容。目前我已经创建了一个包含textView的customTableViewCell。
答案 0 :(得分:0)
不是在textview中添加imageView,而是使用imageView和textview是你的customTableViewCell的子视图。
imageView.frame = CGRectMake(0.0,0.0 40.0,40);
textview.frame = CGRectMake(45.0,0.0,self.view.width-45,40);
[self addSubview: imageView];
[self addSubview: textview];