mirror of
https://github.com/leanote/leanote-ios.git
synced 2025-10-18 01:16:58 +00:00
28 lines
445 B
Objective-C
Executable File
28 lines
445 B
Objective-C
Executable File
//
|
|
// ZSSBarButtonItem.m
|
|
// ZSSRichTextEditor
|
|
//
|
|
// Created by Nicholas Hubbard on 12/3/13.
|
|
// Copyright (c) 2013 Zed Said Studio. All rights reserved.
|
|
//
|
|
|
|
#import "ZSSBarButtonItem.h"
|
|
|
|
@implementation ZSSBarButtonItem
|
|
|
|
- (BOOL)selected
|
|
{
|
|
UIButton* button = (UIButton*)self.customView;
|
|
|
|
return button.selected;
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected
|
|
{
|
|
UIButton* button = (UIButton*)self.customView;
|
|
|
|
button.selected = selected;
|
|
}
|
|
|
|
@end
|