Hi Shane,
try the special mailing list Apple has going for help authoring:
Apple-help-authoring
Probably full on topic there!
Cheers,
Volker
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin requests or moderator com
On May 28, 2010, at 23:39, Tino Rachui wrote:
> I've created a table view cell in interface builder with a custom height.
> However when I load and use that kind of cell at runtime it disregards my
> custom height. I have to use 'heightForRowAtIndexPath' to set the desired
> cell height. Is the
On 29/05/2010, at 3:20 PM, Shane wrote:
> [path lineToPoint:NSMakePoint(cellFrame.size.width,
> cellFrame.size.height)];
Should be:
[path lineToPoint:NSMakePoint( cellFrame.origin.x + cellFrame.size.width,
cellFrame.size.height )];
Or more succinctly:
[path lineToPoint:NSMakePoint( N
On May 27, 2010, at 12:43 PM, Bill Appleton wrote:
> *5)** **I **can't create a simple list*
>
> I did it the only way I could -- with a table that has one column, etc. Man
> that was painful for a simple list. Is there a better way?
In what way did you find creating an NSTableView with one colu
On Fri, May 28, 2010 at 10:34 PM, Jens Alfke wrote:
>
> On May 28, 2010, at 6:59 PM, Michael Ash wrote:
>
>> An attacker can execute a man-in-the-middle attack...
>> An attacker can simply impersonate your app...
>> Neither of these can be defended against, even theoretically, when
>> communicati
The problem with the current version of Apple's document is that it attempts to
cover the new kind of Help book that works only in Snow Leopard, as well as the
old kind of Help book that works in Leopard and Tiger as well as Snow Leopard.
However, from section to section and even sentence to sen
Hi,
I am working on an application that use several custom sheets or dialogs.
I have read most documentation about this, but I am still a bit confused on how
to do this in a simple and standardized way.
Most of the documentation explains how to add a panel to the main nib file, and
how to get
Perhaps NSWindowController subclass is what you're looking for. A sheet is just
another window. Then set the File's Owner of the NIB file that houses the sheet
to this subclass.
> My problem is how to get a custom class attached to the sheet, so controls on
> the sheet can be controlled during
On 29 May 2010, at 9:20 AM, Anders Sommer Lassen wrote:
> Should I use a custom class that derives from NSObject and make an instance
> of this in my nib?
Yes.
> If yes, how can I control this instance from my primary controller class?
I assume your primary controller is either File's Owner, o
I'm not sure why you're trying to separate the ideas of row and cell height. I
don't think there's any reason why you should ever attempt to have a cell whose
height is different from the height returned in heightForRowAtIndexPath. In
fact, you shouldn't even be setting cell frames yourself. The
On May 29, 2010, at 08:56, Luke Hiesterman wrote:
> I'm not sure why you're trying to separate the ideas of row and cell height.
> I don't think there's any reason why you should ever attempt to have a cell
> whose height is different from the height returned in heightForRowAtIndexPath.
Well, t
I realized we're talking about different things. My mind when instantly to
UITableView and I didn't realize we were talking about NSTableView. I can only
speak for UITableView :)
Luke
On May 29, 2010, at 9:45 AM, Quincey Morris wrote:
> On May 29, 2010, at 08:56, Luke Hiesterman wrote:
>
>> I
Thanks, this was very helpful.
Anders
On May 29, 2010, at 4:29 PM, Fritz Anderson wrote:
> On 29 May 2010, at 9:20 AM, Anders Sommer Lassen wrote:
>
>> Should I use a custom class that derives from NSObject and make an instance
>> of this in my nib?
>
> Yes.
>
>> If yes, how can I control t
On May 29, 2010, at 09:48, Luke the Hiesterman wrote:
> I realized we're talking about different things. My mind when instantly to
> UITableView and I didn't realize we were talking about NSTableView. I can
> only speak for UITableView :)
Well, you made the correct assumption. I didn't read the
Thanks Luke and Quincey, I think understand better now. Seems like
'heightForRowAtIndexPath' is the right thing to do. I have different table rows
so configuring a fixed row height in IB (which is possible) is not an option
for me.
And 'yes' I'm talking about UITableView. ;)
Regards,
Tino
Am
Thanks for answering.
Indeed I found a pattern and probably the explanation, now I need to found the
appropriate solution:
What happen is that My iphone application presents the data that comes as an
xml files, which I fetch from a various urls on the same server. There are
problematic urls, t
This is rapidly heading off-topic, but:
On May 29, 2010, at 4:15 AM, Michael Ash wrote:
> Man-in-the-middle: if I execute the attack the first time you talk to
> a given peer, you have no way of detecting me.
This is avoided using an out-of-band exchange of a secret over a trusted
channel (dire
If you don't want to code all of your help document pages by hand, this tool
might be handy:
http://www.omnigroup.com/blog/entry/Helpify_1.5_Help_Us_Help_You_Help_Users/
I've seen others out there that worked by editing in a special app and styled
it like Apple's old help docs, but can't find t
On May 29, 2010, at 11:53 AM, Nava Carmon wrote:
> When I initialize the NSURLConnection I define a timeout in my
> NSURLMutableRequest in order not to stuck the GUI and let the user to work
> with application. On timeout I get didFailWithError in
> NSURLConnectionDelegate and show a message t
On May 29, 2010, at 10:12 PM, Jens Alfke wrote:
>
> On May 29, 2010, at 11:53 AM, Nava Carmon wrote:
>
>> When I initialize the NSURLConnection I define a timeout in my
>> NSURLMutableRequest in order not to stuck the GUI and let the user to work
>> with application. On timeout I get didFailW
On May 29, 2010, at 14:14, Bill Tschumy wrote:
> So I looked at the documentation for what "countForFetchRequest" returns when
> there is an error.
It's a documentation bug. Consulting the actual header file, you'll find:
> // returns the number of objects a fetch request would have returned if
On Sat, May 29, 2010 at 3:04 PM, Jens Alfke wrote:
> This is rapidly heading off-topic, but:
> On May 29, 2010, at 4:15 AM, Michael Ash wrote:
>
>> Man-in-the-middle: if I execute the attack the first time you talk to
>> a given peer, you have no way of detecting me.
>
> This is avoided using an o
Thank you very much for such a clear reply. You sold a book. :)
___
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
He
Answer:
Never trust any data that you did not generate yourself and are 100%
certain it is bug free.
Meaning:
Don't process it at all ever until you run sanity checks against it.
Trust is an entirely different animal.
Thanks,
Barry
On May 29, 2010, at 4:42 PM, Michael Ash wrote:
On Sat
Peter,
On May 28, 2010, at 1:04 AM, Peter Ammon wrote:
> If a window is ordered out, AppKit will not order it back in when the app is
> activated. Is it possible that a different window is created, or that the
> window was not ordered out to begin with?
Yes, orderOut is called on the window a
25 matches
Mail list logo