Re: Class UITableViewCellContentView is implemented in both here and there. One of the two will be used. Which one is undefined.

2011-04-08 Thread Luke Hiesterman
It means that UIKit now defines a class called UITableViewCellContentView and that collides with one of your classes. Objective C has this inherent weakness that if a class with the same name is implemented in more than one place, they fight for which one gets used. Since you can't change

Re: Class UITableViewCellContentView is implemented in both here and there. One of the two will be used. Which one is undefined.

2011-04-08 Thread Laurent Daudelin
Thanks Luke. I initially didn't understand how I could have done this because I'm careful about the names I give my classes, having done Objective-C for 15 years. But I found one implementation. I remember yesterday when googling that there was an issue on Stack Overflow at some point with SDK

Class UITableViewCellContentView is implemented in both here and there. One of the two will be used. Which one is undefined.

2011-04-07 Thread Laurent Daudelin
Back working on an old project I haven't touched in maybe over a year. Updated the project file with the latest SDK, clean all targets and rebuilt. Now, when I launch the app in the simulator (any version of iOS), I'm getting this stupid error: Class UITableViewCellContentView is implemented