25 lines
443 B
Mathematica
25 lines
443 B
Mathematica
|
//
|
||
|
// 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
|