Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to implement the following method of NSAttributedString in Macruby:

  • (id)attribute:(NSString *)attributeName atIndex:(NSUInteger)index effectiveRange:(NSRangePointer)aRange

As by definition, it Returns the value for an attribute with a given name of the character at a given index, and by reference the range over which the attribute applies.

OK, so I need a pointer to NSRange, which I set up as follows:

range=Pointer.new("{_NSRange=QQ}")[0]

It seems to be fine as range.class => NSRange.

However, when I execute the method:

font=txtStor.attribute(NSFontAttributeName,atIndex:index,effectiveRange:range)

my range is always #<NSRange location=0 length=0>. Also, p range gives me #<NSRange location=0 length=0>.

Any ideas how to implement this correctly?

share|improve this question

1 Answer

up vote 0 down vote accepted

I was given the solution by Watson at the MacRuby-devel mailing list. I should have written my code like that:

 range=Pointer.new(NSRange.type)
 #though range=Pointer.new("{_NSRange=QQ}") would also work

then, as I had before

font=txtStor.attribute(NSFontAttributeName,atIndex:index,effectiveRange:range)

and if needed I could dereference the range by range[0].

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.