another.im-ios/Monal/Classes/MLButtonCell.m

25 lines
443 B
Mathematica
Raw Normal View History

2024-11-18 14:53:52 +00:00
//
// 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