> On 28 May 2015, at 17:56, Kyle Sluder wrote:
>
> On Thu, May 28, 2015, at 08:37 AM, Dave wrote:
>> Hi,
>>
>> This is from Apple Sample Code so I thought something as fundamental as
>> this would have been dealt with correctly. This is the copy method inside
>> the “ImageAndTextCell” class,
>>
On Thu, May 28, 2015, at 08:37 AM, Dave wrote:
> Hi,
>
> This is from Apple Sample Code so I thought something as fundamental as
> this would have been dealt with correctly. This is the copy method inside
> the “ImageAndTextCell” class,
>
> -(id) copyWithZone:(NSZone*) zone
> {
> ImageAndTextCell
Hi,
This is from Apple Sample Code so I thought something as fundamental as this
would have been dealt with correctly. This is the copy method inside the
“ImageAndTextCell” class,
-(id) copyWithZone:(NSZone*) zone
{
ImageAndTextCell *cell = (BJImageAndTextCell*) [super copyWithZone:zone];
cell.
> On 28 May 2015, at 12:56 am, Dave wrote:
>
> myCell = (ImageAndTextCell*) [cell copy];
> //***
It’s a “well known”* fact that a copy of an NSCell or an
Sorry, I meant:
In I change this to:
myCell = (ImageAndTextCell*) [cell retain];
//***
It doesn’t work? Presumably now I think about it, because the Image
Hi,
I’ve Found it, please see line marked below.
In I change this to:
myCell = (ImageAndTextCell*) [cell copy];
//***
It doesn’t work, which is a bit of