Files
bundesmessenger-ios/Vector/Views/TableViewCell/TableViewCellWithTickAndLabel.m
T
giomfo e84f1ef42b Room Settings: Have proper room settings
- bug fix: history visibility cells are not selectable
- prompt user before changing history visibility

https://github.com/vector-im/vector-ios/issues/337
2016-06-30 17:02:53 +02:00

37 lines
911 B
Objective-C

/*
Copyright 2016 OpenMarket Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#import "TableViewCellWithTickAndLabel.h"
@implementation TableViewCellWithTickAndLabel
- (void)setEnabled:(BOOL)enabled
{
if (enabled)
{
_tick.image = [UIImage imageNamed:@"selection_tick"];
}
else
{
_tick.image = [UIImage imageNamed:@"selection_untick"];
}
_enabled = enabled;
}
@end