How do you use this method properly, I get "Conversion to non-scalar type requested" upon compile. When executing the method like so: [tableView setIntercellSpacing:(NSSize)(4.0, 5.0)];
Any Ideas? thanks.
How do you use this method properly, I get "Conversion to non-scalar type requested" upon compile. When executing the method like so: [tableView setIntercellSpacing:(NSSize)(4.0, 5.0)];
Any Ideas? thanks.
Oh wait, got it.
This is how you do it: [tableView setIntercellSpacing:NSMakeSize(2.0, 5.0)];