Hi, this also does not help, i did not get your code working :((( any other ideas? i am quite under pressure to solve that
2012/1/16 Pavel Sich <[email protected]> > The reason why you see the images changing can be caused by your cells > being reused by the virtualization mechanism in UITableView. > > > Handle the WillDisplay method on UITableViewSource and update the > underlying controller you created for the cell. Usual scenario is, that you > create a map between the cell.Tag and instance of the controller you > created for the cell. Then you can call the update on the specific cell to > set the values to the cell. > > > public override void WillDisplay (UITableView tableView, UITableViewCell > cell, NSIndexPath indexPath) > > { > > // get the controller from the cell.Tag > > var controller = controllers [cell.Tag]; > > controller.SetItem (_feed.Items[indexPath.Row]); > > } > > > Hope this helps. > > -Pavel > @sichy > > > > > _______________________________________________ > MonoTouch mailing list > [email protected] > http://lists.ximian.com/mailman/listinfo/monotouch > > -- Mit freundlichem Gruß,* Andreas Plötzeneder* CEO *ihr ploetzeneder it-solutions Team **Mobile Development*<http://www.ploetzeneder-it.com/softwareentwicklung/mobile-development.html> * – **Desktopanwendungen*<http://www.ploetzeneder-it.com/softwareentwicklung/desktop-anwendungen.html> * – **Webanwendungen*<http://www.ploetzeneder-it.com/softwareentwicklung/web-anwendungen.html> * Tel:* +43 720 30 30 24 10 *Fax:* +43 720 30 30 24 20 *Email:* [email protected] *web: *http://www.ploetzeneder-it.com Der Inhalt dieser E-Mail samt aller Anhänge ist vertraulich und ausschließlich für den Adressaten bestimmt. Wenn Sie nicht der vorgesehene Adressat dieser E-Mail oder dessen Vertreter sind, so löschen sie diese bitte und informieren Sie den Absender. Jede Form der Verbreitung oder Veröffentlichung der E-Mail, sei es in ihrer Gesamtheit oder in Teilen, die nicht ihrem Zweck dient, ist unzulässig. Das Internet kann die Unversehrtheit dieser Mitteilung nicht garantieren. ploetzeneder it-solutions übernimmt daher keine Haftung, falls die E-Mail geändert wurde.
_______________________________________________ MonoTouch mailing list [email protected] http://lists.ximian.com/mailman/listinfo/monotouch
