Re: from symbol name to full documentation in Xcode 4
Re: from symbol name to full documentation in Xcode 4
- Subject: Re: from symbol name to full documentation in Xcode 4
- From: "B.J. Buchalter" <email@hidden>
- Date: Tue, 22 Mar 2011 05:54:51 -0400
> start with the following code sample (a bit artificial, this is to illustrate):
>
> @property (nonatomic, retain) IBOutlet UISlider *outer_satur_slider;
> @property (nonatomic, retain) IBOutlet UISlider *outer_alpha_slider;
> @property (nonatomic, retain) IBOutlet UISlider *mid_satur_slider;
> @property (nonatomic, retain) IBOutlet UISlider *mid_alpha_slider;
> @property (nonatomic, retain) IBOutlet UISlider *inner_satur_slider;
> @property (nonatomic, retain) IBOutlet UISlider *inner_alpha_slider;
>
> @synthesize
> @synthesize
> @synthesize
> @synthesize
> @synthesize
> @synthesize
>
> (there is a space after each of these "@synthesize ")
> The goal is to copy/paste the correct property names to the series of @synthesize statements. I Xcode 3, I can do it in three steps:
>
> 1- copy the property names only from the @property statements by option-click and dragging a rectangle only their names only.
> Actual Results:
>
> @synthesize *outer_satur_slider;
> *outer_alpha_slider;
> *mid_satur_slider;
> *mid_alpha_slider;
> *inner_satur_slider;
> *inner_alpha_slider;
> @synthesize
> @synthesize
> @synthesize
> @synthesize
> @synthesize
BBEdit works the same way as you are reporting for Xcode4. I don't have Xcode4 installed to test, but what does work in BBEdit is to do a second opt-drag selection of the area that you want to paste into (so you would select the end of the line for each of the @synthesize lines) and then paste.
Give it a shot on Xcode 4 and see if that works...
Best regards,
B.J. Buchalter
Metric Halo
http://www.mhlabs.com
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden