42 lines
895 B
Objective-C
42 lines
895 B
Objective-C
//
|
|
// Created by Jesse Squires
|
|
// http://www.jessesquires.com
|
|
//
|
|
//
|
|
// Documentation
|
|
// http://cocoadocs.org/docsets/JSQMessagesViewController
|
|
//
|
|
//
|
|
// GitHub
|
|
// https://github.com/jessesquires/JSQMessagesViewController
|
|
//
|
|
//
|
|
// License
|
|
// Copyright (c) 2014 Jesse Squires
|
|
// Released under an MIT license: http://opensource.org/licenses/MIT
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface NSUserDefaults (DemoSettings)
|
|
|
|
+ (void)saveExtraMessagesSetting:(BOOL)value;
|
|
+ (BOOL)extraMessagesSetting;
|
|
|
|
+ (void)saveLongMessageSetting:(BOOL)value;
|
|
+ (BOOL)longMessageSetting;
|
|
|
|
+ (void)saveEmptyMessagesSetting:(BOOL)value;
|
|
+ (BOOL)emptyMessagesSetting;
|
|
|
|
+ (void)saveSpringinessSetting:(BOOL)value;
|
|
+ (BOOL)springinessSetting;
|
|
|
|
+ (void)saveOutgoingAvatarSetting:(BOOL)value;
|
|
+ (BOOL)outgoingAvatarSetting;
|
|
|
|
+ (void)saveIncomingAvatarSetting:(BOOL)value;
|
|
+ (BOOL)incomingAvatarSetting;
|
|
|
|
@end
|