22 lines
393 B
Mathematica
22 lines
393 B
Mathematica
|
//
|
||
|
// InfoTabMatrix.m
|
||
|
// Transmission
|
||
|
//
|
||
|
// Created by Mitchell Livingston on 12/21/18.
|
||
|
// Copyright © 2018 The Transmission Project. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "InfoTabMatrix.h"
|
||
|
#import "InfoTabButtonCell.h"
|
||
|
|
||
|
@implementation InfoTabMatrix
|
||
|
|
||
|
- (void)viewDidChangeEffectiveAppearance;
|
||
|
{
|
||
|
for (InfoTabButtonCell *cell in self.cells) {
|
||
|
[cell reloadAppearance];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@end
|