Bug with IB?

2009-12-10 Thread Eric E. Dolecki
If I create a UILabel in IB in a view I place 1/2 of the label out of the view at the top, I can't seem to drag the view window around by the title bar where the label is. I know that having the control 1/2 out of the view isn't normal, but shouldn't the view window move around regardless of

Re: Bug with IB?

2009-12-10 Thread Henry McGilton (Boulevardier)
On Dec 10, 2009, at 6:24 AM, Eric E. Dolecki wrote: If I create a UILabel in IB in a view I place 1/2 of the label out of the view at the top, I can't seem to drag the view window around by the title bar where the label is. I know that having the control 1/2 out of the view isn't normal,

Re: Bug with IB?

2009-12-10 Thread Eric E. Dolecki
Hmm - my View window is sized down to something like 200px tall. Maybe I should QT capture it. On Thu, Dec 10, 2009 at 10:57 AM, Henry McGilton (Boulevardier) appledevelo...@trilithon.com wrote: On Dec 10, 2009, at 6:24 AM, Eric E. Dolecki wrote: If I create a UILabel in IB in a view I

Re: Weird bug in IB...

2008-11-13 Thread Sherm Pendley
On Nov 13, 2008, at 1:17 AM, Jean-Nicolas Jolivet wrote: I'm trying to place a label over a TableView and for some reason there's just no way the label will show up once I run the app... In Interface Builder it looks good (basically it's just a label saying Drop your files here...) I made

Re: Weird bug in IB...

2008-11-13 Thread Quincey Morris
On Nov 12, 2008, at 23:24, Jean-Nicolas Jolivet wrote: One quick question, how can I modify my TextView's z-order? I'm looking at NSView's methods but can't seem to find one that does that? (I'm probably just missing it since NSView's got a good bunch of'em!... :) I always did it in IB

Re: Weird bug in IB...

2008-11-13 Thread Uli Kusterer
you can rely on is that subviews will be drawn after their superview. I think you can turn on Layer-backed views to make this behaviour more predictable, but that's a bit fiddly, too. So, no, it's not an IB bug, it's simply a documented inability of AppKit. Don't ask me why it isn't

Re: Weird bug in IB...

2008-11-13 Thread Jean-Nicolas Jolivet
to make this behaviour more predictable, but that's a bit fiddly, too. So, no, it's not an IB bug, it's simply a documented inability of AppKit. Don't ask me why it isn't supported. Even Carbon does that, and it's very easy to do this with good performance. Heck, I implemented speedy

Re: Weird bug in IB...

2008-11-13 Thread Michael Ash
On Thu, Nov 13, 2008 at 11:13 AM, Jean-Nicolas Jolivet [EMAIL PROTECTED] wrote: Correct me if I'm wrong though, but I read that it wasn't a problem anymore in 10.5... can anyone confirm that?? Yes, on 10.5 AppKit allows and guarantees the correct behavior of overlapping sibling views. I'm not

Re: Weird bug in IB...

2008-11-13 Thread Shawn Erickson
On Thu, Nov 13, 2008 at 8:54 AM, Michael Ash [EMAIL PROTECTED] wrote: On Thu, Nov 13, 2008 at 11:13 AM, Jean-Nicolas Jolivet [EMAIL PROTECTED] wrote: Correct me if I'm wrong though, but I read that it wasn't a problem anymore in 10.5... can anyone confirm that?? Yes, on 10.5 AppKit allows

Re: Weird bug in IB...

2008-11-13 Thread Michael Ash
On Thu, Nov 13, 2008 at 12:11 PM, Shawn Erickson [EMAIL PROTECTED] wrote: On Thu, Nov 13, 2008 at 8:54 AM, Michael Ash [EMAIL PROTECTED] wrote: On Thu, Nov 13, 2008 at 11:13 AM, Jean-Nicolas Jolivet [EMAIL PROTECTED] wrote: Correct me if I'm wrong though, but I read that it wasn't a problem

Re: Weird bug in IB...

2008-11-13 Thread Shawn Erickson
On Thu, Nov 13, 2008 at 9:13 AM, Michael Ash [EMAIL PROTECTED] wrote: The documentation is busted. Here's a message from Corbin Dunn stating that they work without layers: Also note Jamie's email about it having issues even 10.5. I am still not sure it works fully as intended (don't have time

Re: Weird bug in IB...

2008-11-13 Thread Jean-Nicolas Jolivet
That was going to be my next point Assuming it has been fixed in Leopard, it is therefore really an IB Bug as I suspected at first?? Anyway, Re-ordering my controls programatically did the trick... however, should I assume that it might not work on Tiger since overlapping view's

Re: Weird bug in IB...

2008-11-13 Thread Andrew Merenbach
it has been fixed in Leopard, it is therefore really an IB Bug as I suspected at first?? Anyway, Re-ordering my controls programatically did the trick... however, should I assume that it might not work on Tiger since overlapping view's behavior is unpredictable in 10.4?? -Jean-Nicolas On 13

Re: Weird bug in IB...

2008-11-13 Thread Jonathan Hess
Hess On Nov 13, 2008, at 9:31 AM, Jean-Nicolas Jolivet wrote: That was going to be my next point Assuming it has been fixed in Leopard, it is therefore really an IB Bug as I suspected at first?? Anyway, Re-ordering my controls programatically did the trick... however, should I assume

Re: Weird bug in IB...

2008-11-13 Thread Jean-Nicolas Jolivet
, it is therefore really an IB Bug as I suspected at first?? Anyway, Re-ordering my controls programatically did the trick... however, should I assume that it might not work on Tiger since overlapping view's behavior is unpredictable in 10.4?? -Jean-Nicolas On 13-Nov-08, at 12:18 PM, Shawn Erickson

Re: Weird bug in IB...

2008-11-13 Thread Michael Ash
On Thu, Nov 13, 2008 at 12:18 PM, Shawn Erickson [EMAIL PROTECTED] wrote: On Thu, Nov 13, 2008 at 9:13 AM, Michael Ash [EMAIL PROTECTED] wrote: The documentation is busted. Here's a message from Corbin Dunn stating that they work without layers: Also note Jamie's email about it having issues

Re: Weird bug in IB...

2008-11-13 Thread Michael Ash
On Thu, Nov 13, 2008 at 12:31 PM, Jean-Nicolas Jolivet [EMAIL PROTECTED] wrote: That was going to be my next point Assuming it has been fixed in Leopard, it is therefore really an IB Bug as I suspected at first?? Anyway, Re-ordering my controls programatically did the trick... however

Re: Weird bug in IB...

2008-11-13 Thread Uli Kusterer
On 13.11.2008, at 17:13, Jean-Nicolas Jolivet wrote: Correct me if I'm wrong though, but I read that it wasn't a problem anymore in 10.5... can anyone confirm that?? As I said, layer-backed views. But they're fiddly. Cheers, -- Uli Kusterer The Witnesses of TeachText are everywhere...

Re: Weird bug in IB...

2008-11-13 Thread Ken Ferry
Hey Uli, On Thu, Nov 13, 2008 at 3:48 PM, Uli Kusterer [EMAIL PROTECTED] wrote: On 13.11.2008, at 17:13, Jean-Nicolas Jolivet wrote: Correct me if I'm wrong though, but I read that it wasn't a problem anymore in 10.5... can anyone confirm that?? As I said, layer-backed views. But they're

Weird bug in IB...

2008-11-12 Thread Jean-Nicolas Jolivet
I'm trying to place a label over a TableView and for some reason there's just no way the label will show up once I run the app... In Interface Builder it looks good (basically it's just a label saying Drop your files here...) I made sure I Sent it to front... while sending the table view

Re: Weird bug in IB...

2008-11-12 Thread Graham Cox
On 13 Nov 2008, at 5:17 pm, Jean-Nicolas Jolivet wrote: Any particular reasons why my label will always show up behind my tableview no matter what I do?? Yes, a bug in IB. I've noticed that the Z-order of views in IB is not always (or even very often) honoured correctly, making

Re: Weird bug in IB...

2008-11-12 Thread Jean-Nicolas Jolivet
Jean-Nicolas Jolivet On 13-Nov-08, at 1:34 AM, Graham Cox wrote: On 13 Nov 2008, at 5:17 pm, Jean-Nicolas Jolivet wrote: Any particular reasons why my label will always show up behind my tableview no matter what I do?? Yes, a bug in IB. I've noticed that the Z-order of views in IB