cdts/xdts-ios 3/TreeHole/Code/Utility/MTPage/MTPageConfig.m

31 lines
696 B
Mathematica
Raw Normal View History

2023-07-27 09:20:00 +08:00
//
// MTPageConfig.m
// MTPage
//
// Created by ko1o on 2019/5/6.
// Copyright © 2019 ko1o. All rights reserved.
//
#import "MTPageConfig.h"
@implementation MTPageConfig
- (instancetype)init
{
if (self = [super init]) {
_pageWidth = [UIScreen mainScreen].bounds.size.width;
_pageHeight = [UIScreen mainScreen].bounds.size.height;
_pageScrollEnable = YES;
_menuContentInset = UIEdgeInsetsMake(15, 15, 15, 15);
_menuItemSize = CGSizeZero;
_menuItemSpacing = 10.0;
_menuContentWidth = _pageWidth;
_menuContentHeight = 50.0;
_animatedDuration = 0.25;
_switchAnimated = YES;
}
return self;
}
@end