YJStretchableToolBar is an easy and stretchable tool bar.。
- Add pod 'YJStretchableBar' to your Podfile.
- Run pod install or pod update.
- import <YJStretchableBar/YJStretchableBar.h>.
- Support to portrait & landscape
- Sepcify stretching orientation automatically.
- Easy and loose coupling
_controlBar = [YJStretchableBar toolBarWithButtons:btnArr
barItemSize:CGSizeMake(50, 50)
portraitPoint:CGPointMake(0, CGRectGetMidY(self.view.frame) - 25 + 1)
landscapePoint:CGPointMake(CGRectGetHeight(self.view.frame) * 0.5 - 25 - 1, 0)];
See demo for details.
- ARC
- Requires iOS 7.0+.
- Adapt to both iPhone & iPad.
YJStretchableBar is provided under the MIT license.See LICENSE file for details.
YJStretchableToolBar 是一个非常简单易用的可伸缩控制条。
- 在 Podfile 中添加
pod 'YJStretchableBar'
。 - 执行
pod install
或pod update
。 - 导入 <YJStretchableBar/YJStretchableBar.h>。
- 支持横竖屏
- 智能判断伸缩方向
- 集成简单,无侵染
_controlBar = [YJStretchableBar toolBarWithButtons:btnArr
barItemSize:CGSizeMake(50, 50)
portraitPoint:CGPointMake(0, CGRectGetMidY(self.view.frame) - 25 + 1)
landscapePoint:CGPointMake(CGRectGetHeight(self.view.frame) * 0.5 - 25 - 1, 0)];
完整例子请参照 demo
- ARC
- 该项目最低支持
iOS 7.0
。 - 同时支持 iPhone 和 iPad
YJStretchableBar 使用 MIT 许可证,详情见 LICENSE 文件。