I was thinking about Auto-Layout and indeed it is the source of the Problem.
Even if the delgate just had - (BOOL)splitView:(NSSplitView *)splitView shouldAdjustSizeOfSubview:(NSView *)view { return YES; } the resizing did not work anymore. The proposedMinimumPosition was just the input, which is 0. I just wanted to implement a method without altering the behavior (which this should have done if i read the header documentation correctly) Anyway. Disabling Autolayout fixed all the quirks. How does one use a Splitter with Autolayout? Do I have to add custom constraints to the content views? On 19.02.2013, at 18:22, Chuck Soper <chu...@veladg.com> wrote: > Are you using Auto Layout in InterfaceBuilder? (See the Use Auto Layout > checkbox in the File inspector for each nib.) If so, implementing > splitView:constrainMinCoordinate:ofSubviewAt: may conflict with auto > layout. > > Also, what is your purposed minimum? Where is it defined? > > Chuck > > > On 2/19/13 7:53 AM, "Michael Starke" > <michael.sta...@hicknhack-software.com> wrote: > >> Hello here, >> >> Yesterday a ran into a strange problem that I could not get my head >> around. Simple setup created in InterfaceBuilder: >> >> A window with a horizontal NSSplitview with two subviews. >> >> If I run this without setting the delegate of the split view the two >> subviews get rescaled as expected. >> When I hook up a delegate (for example via InterfaceBuilder) and the >> delegate does not implement any of the @optionals, all is fine. >> >> But when I just add one implementation, e.g: >> >> - (CGFloat)splitView:(NSSplitView *)splitView >> constrainMinCoordinate:(CGFloat)proposedMinimumPosition >> ofSubviewAt:(NSInteger)dividerIndex { >> return proposedMinimumPosition; >> } >> >> Which should interfere in any way, all goes down the drain. If i drag the >> Splitter, the left view gets resized, the right view just stays the same >> If the delegate implements >> >> - (void)splitViewDidResizeSubviews:(NSNotification *)notification >> >> I just get notified for resizing the first view, not the second >> >> Am I to stupid to see my error? Or might this be a bug? >> >> Any help would be great, >> Michael >> >> >> >> ___m i c h a e l s t a r k e____ >> geschäftsführer >> HicknHack Software GmbH >> www.hicknhack-software.com >> >> ___k o n t a k t____ >> +49 (170) 3686136 >> cont...@hicknhack.com >> >> ___H i c k n H a c k S o f t w a r e G m b H____ >> geschäftsführer - maik lathan | andreas reischuck | michael starke >> bayreuther straße 32 >> 01187 dresden >> amtsgericht dresden HRB 30351 >> sitz - dresden >> >> >> _______________________________________________ >> >> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) >> >> Please do not post admin requests or moderator comments to the list. >> Contact the moderators at cocoa-dev-admins(at)lists.apple.com >> >> Help/Unsubscribe/Update your Subscription: >> https://lists.apple.com/mailman/options/cocoa-dev/chucks%40veladg.com >> >> This email sent to chu...@veladg.com > > ___m i c h a e l s t a r k e____ geschäftsführer HicknHack Software GmbH www.hicknhack-software.com ___k o n t a k t____ +49 (170) 3686136 cont...@hicknhack.com ___H i c k n H a c k S o f t w a r e G m b H____ geschäftsführer - maik lathan | andreas reischuck | michael starke bayreuther straße 32 01187 dresden amtsgericht dresden HRB 30351 sitz - dresden _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com