Re: ARC conversion issue problem with Xcode 4.2

2011-10-16 Thread Quincey Morris
On Oct 16, 2011, at 10:13 , Sean Todd wrote: > Still not sure why the error message stated that the type of the property did > not match the type of the setter accessor though? My guess is that the @property causes the compiler to create an implicit declaration for the accessor, which includes

Re: ARC conversion issue problem with Xcode 4.2

2011-10-16 Thread Sean Todd
On Oct 16, 2011, at 1:02 AM, Quincey Morris wrote: > On Oct 15, 2011, at 18:02 , Sean Todd wrote: > >> I am trying to convert a Core Data app which uses garbage collection to ARC. >> When I run the refactoring tool, I see issues like: >> >> Semantic Issue: Type of property 'person' does not ma

Re: ARC conversion issue problem with Xcode 4.2

2011-10-15 Thread Quincey Morris
On Oct 15, 2011, at 18:02 , Sean Todd wrote: > I am trying to convert a Core Data app which uses garbage collection to ARC. > When I run the refactoring tool, I see issues like: > > Semantic Issue: Type of property 'person' does not match type of accessor > 'setPerson:' It's really, really imp

ARC conversion issue problem with Xcode 4.2

2011-10-15 Thread Sean Todd
I am trying to convert a Core Data app which uses garbage collection to ARC. When I run the refactoring tool, I see issues like: Semantic Issue: Type of property 'person' does not match type of accessor 'setPerson:' The relevant declaration code: @class ABPerson; @interface XG2Student : NS