滚动tableView iOS时调用的默认方法是什么

时间:2016-07-07 11:02:55

标签: ios uitableview dynamic uitextview

在我的tableViewCell中,我试图在带有背景图像的textView中显示来自CoreData字符串对象的动态内容。当tableView第一次加载时,背景图像向右拉伸,textView中的文本内容正在修剪,但是当我滚动tableView时,背景图像的rect正按预期显示,但textView内容仍在修剪。任何人都可以告诉我滚动tableView时系统会调用哪些默认方法?因为某些方法正确设置我的背景Image rect,我无法在tableView的初始加载中设置。

2 个答案:

答案 0 :(得分:1)

<?xml version="1.0" encoding="utf-8"?>
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/gridview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:columnWidth="90dp"
    android:numColumns="auto_fit"
    android:verticalSpacing="10dp"
    android:horizontalSpacing="10dp"
    android:stretchMode="columnWidth"
    android:gravity="center"
/>

答案 1 :(得分:0)

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

请查看tableview数据委托和数据源方法。