On 26 Jun 2014, at 13:16, Jonathan Mitchell wrote:
>
> On 25 Jun 2014, at 16:41, Ken Thomases wrote:
>>
>> Couldn't you return a custom row view using -tableView:rowViewForRow: and
>> then return no cell views for that row by returning nil from
>> -tableView:viewForTableColumn:row:?
>>
> C
On 25 Jun 2014, at 16:41, Ken Thomases wrote:
>
> Couldn't you return a custom row view using -tableView:rowViewForRow: and
> then return no cell views for that row by returning nil from
> -tableView:viewForTableColumn:row:?
>
Customising the group row behaviour does seem like the answer here
> On Jun 25, 2014, at 10:41 AM, Ken Thomases wrote:
>
> Couldn't you return a custom row view using -tableView:rowViewForRow: and
> then return no cell views for that row by returning nil from
> -tableView:viewForTableColumn:row:?
IIRC, this doesn’t present correctly to VoiceOver.
--Kyle
___
On Jun 25, 2014, at 9:48 AM, Kyle Sluder wrote:
> On Jun 25, 2014, at 9:07 AM, Jonathan Mitchell
> wrote:
>>
>> The docs for
>>
>> - (NSCell *)tableView:(NSTableView *)tableView
>> dataCellForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row
>> say
>>
>> A different data cell can
On Jun 25, 2014, at 9:07 AM, Jonathan Mitchell wrote:
>
> The docs for
>
> - (NSCell *)tableView:(NSTableView *)tableView
> dataCellForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row
> say
>
> A different data cell can be returned for any particular table column and
> row, or a c
The docs for
- (NSCell *)tableView:(NSTableView *)tableView
dataCellForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row
say
A different data cell can be returned for any particular table column and row,
or a cell that will be used for the entire row (that is, a full width cell).
Th