Re: How do you underline text ? [Supplement]
Re: How do you underline text ? [Supplement]
- Subject: Re: How do you underline text ? [Supplement]
- From: Greg Titus <email@hidden>
- Date: Mon, 18 Jun 2001 10:25:03 -0700
On Monday, June 18, 2001, at 10:01 AM, Stiphane Sudre wrote:
Due to the fact that PB/IB have some difficulties to be aware of the
last binary version, I wasn't able to mention that using Underline
Attributes crashes the application.
While, not using it, is working like a charm.
NSSingleUnderlineStyle is a value of an enum, which means it is an
integer, not an object. You need to put it into your attribute
dictionary with [NSNumber numberWithInt:NSSingleUnderlineStyle] and then
it should work fine.
--Greg