Hi, I have a Cocoa document based application that I started in Xcode 2.1 and have worked on exclusively in Xcode 2.1. I have several header files that I've added methods to over the course of several weeks. However, Xcode doesn't show any of my additions other than the first methods I've added. My work went something like this:
1. Create .h/.m files and add an array variable with an accessor method
2. Days/weeks later, remove accessor method on array and replace with method for the count of array members and accessor for array element at index
3. Days/weeks later, add methods to add different elements to the array
Now when I use the class from another class and hit escape to popup code completion, I only seed the first method from (1). The methods added in (2) and (3) are not there, and (1) is but shouldn't be there.
Is there a way to force Xcode to rebuild the files it uses for code completion?
Thanks
Bill