another.im-ios/Monal/Classes/MLButtonCell.m
2024-11-18 15:53:52 +01:00

25 lines
443 B
Objective-C

//
// MLButtonCell.m
// Monal
//
// Created by Anurodh Pokharel on 4/10/15.
// Copyright (c) 2015 Monal.im. All rights reserved.
//
#import "MLButtonCell.h"
@implementation MLButtonCell
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end