[翻译] DDExpandableButton

DDExpandableButton

https://github.com/ddebin/DDExpandableButton

Purpose - 目的

DDExpandableButton is a single-file iOS 5.0+ non-ARC class (ARC compatible) designed to be used like an expandable UIButton ; as seen in the iOS Camera app for the flash button.

DDExpandableButton 是一个MRC的类(兼容ARC),用来点击时展开UIButton;与iOS照相机应用的flash按钮一样。

Originally inspired by ExpandyButton.

Properties - 属性

A DDExpandableButton has the following properties:

有以下属性列表:

  • @property (nonatomic,assign) BOOL expanded; Current button status (if expanded or shrunk). 当前按钮的状态(展开了还是未展开)
  • @property (nonatomic,assign) BOOL useAnimation; Use animation during button state transitions. 在button状态改变时是否使用动画效果
  • @property (nonatomic,assign) BOOL toggleMode; Use button as a toggle (like "HDR On" / "HDR Off" button in camera app). 是否用作开关(像照相机应用中的“HDR On / HDR Off”按钮一样)
  • @property (nonatomic,assign) CGFloat timeout; To shrink the button after a timeout. Use 0 if you want to disable timeout. 一个未展开的超时时间,用0可以禁用超时时间
  • @property (nonatomic,assign) CGFloat horizontalPadding; Horizontal padding space between items. 按钮间的水平距离
  • @property (nonatomic,assign) CGFloat verticalPadding; Vertical padding space above and below items. 按钮间的垂直距离
  • @property (nonatomic,assign) CGFloat borderWidth; Width (thickness) of the button border. 按钮边缘的厚度
  • @property (nonatomic,assign) CGFloat innerBorderWidth; Width (thickness) of the inner borders between items. 按钮内边缘的厚度
  • @property (nonatomic,assign) NSUInteger selectedItem; Selected item number. 选择的第几个
  • @property (nonatomic,retain) UIColor *borderColor; Color of the button and inner borders. 按钮内边缘颜色
  • @property (nonatomic,retain) UIColor *textColor; Color of text labels. 文本的颜色
  • @property (nonatomic,retain) UIFont *labelFont; Font of text labels. 文本的字体
  • @property (nonatomic,retain) UIFont *unSelectedLabelFont; Font of unselected text labels.Nil if not different from labelFont. 没有选择的按钮的字体,如果为nil的话,就没有区别
  • @property (nonatomic,readonly) NSArray *labels; Access UIView used to draw labels. 所有label

Methods - 方法

A DDExpandableButton has the following methods:

DDExpandableButton 有着如下的一些方法:

  • - (id)initWithPoint:(CGPoint)point leftTitle:(id)leftTitle buttons:(NSArray *)buttons; Init method where you can specify leftTitle and buttons. 初始化方法,你可以用来指定标题以及按钮
  • - (void)setSelectedItem:(NSUInteger)selected animated:(BOOL)animated; Animated version of - (void)setSelectedItem:(NSUInteger)selected. 这个方法- (void)setSelectedItem:(NSUInteger)selected的动画版本
  • - (void)setExpanded:(BOOL)expanded animated:(BOOL)animated; Animated version of - (void)setExpanded:(BOOL)expanded. 这个方法- (void)setExpanded:(BOOL)expanded的动画版本
  • - (void)setLeftTitle:(id)leftTitle; Set left title view : you can use a NSString, an UIImageor any UIView (but the view must implement DDExpandableButtonViewSource protocol). 设置左侧view:你可以用字符串,UIImage或者任何UIView
  • - (void)setButtons:(NSArray *)buttons; Set buttons views : you can use a NSString, anUIImage or any UIView (but the view must implement DDExpandableButtonViewSource protocol). 设置buttons,你可以用字符串,UIImage或者任何UIView
  • - (void)disableTimeout; If you want to disable timeout shrunk. You can set timeout to 0 also. 如果你想关闭超时时间,你可以将timeout设置成0
  • - (void)updateDisplay; When modifying button parameters, use this method to update button display. 但编辑按钮的参数时,你需要用这个方法来更新按钮的显示

Protocols - 协议

The DDExpandableButtonViewSource protocol, used when you specify the title or the different buttons, has the following methods:

DDExpandableButtonViewSource 协议,当你在制定标题或者不同的按钮时,有着如下的一些方法:

  • - (CGSize)defaultFrameSize; Returns default frame size of the view, used when expanding the button. 展开按钮的时候返回view的默认尺寸
  • - (void)setHighlighted:(BOOL)highlighted; Optional, used to change appearance of selected items. 可选的,用来修改选中按钮的外观

Usage - 使用

Example : a button with four text labels and a hook when value change.

NSArray *buttons = [NSArray arrayWithObjects:@"Black", @"Red", @"Green", @"Blue", nil];
DDExpandableButton *colorButton = [[[DDExpandableButton alloc] initWithPoint:CGPointMake(20, 70) leftTitle:@"Color" buttons:buttons] autorelease];
[[self view] addSubview:colorButton];
[colorButton addTarget:self action:@selector(toggleColor:) forControlEvents:UIControlEventValueChanged];

 

时间: 2024-11-05 14:54:48

[翻译] DDExpandableButton的相关文章

[翻译]JDK 8 兼容性指南

翻译官方文档,删除部分可忽略. 译者:坤谷,井桐,激酶 兼容性是一个复杂的问题. 本文介绍了Java平台潜在的三种不兼容问题: 源码: 源码兼容性问题关注Java源代码转换成class文件是否兼容,包括代码是否仍然可编译. 二进制: 在Java语言规范中,二进制兼容性定义为:"类的改变是二进制兼容的(或者不破坏二进制兼容性),是指如果改变前的类的二进制在链接时没有错误,那么改变后的类在链接时仍然没有错误." 行为 : 行为兼容性包括在运行时执行的代码的语义. 欲了解更多信息,请参阅Op

java.security.Guard翻译

  Overview Package  Class Use Tree Deprecated Index Help JavaTM 2 PlatformStd. Ed. v1.4.2  PREV CLASS   NEXT CLASSFRAMES    NO FRAMES     All Classes SUMMARY: NESTED | FIELD | CONSTR | METHODDETAIL: FIELD | CONSTR | METHOD java.security Interface Gua

翻译CFSSL相关操作文档

我发现国内这个CFSSL资料蛮少的. 但如果深入到K8S认证之后,这块知识又必不可少. (OPENSSL也可实现,但好像不是主流) 于是花了两天快速翻译了一下几个文档. 贡献给有需要的同仁. 如有错误(肯定有!),欢迎提正. 百度网盘共享地址: https://pan.baidu.com/s/1skAQtAH

如何这段C#代码翻译成VB代码?谢谢!

问题描述 如何这段C#代码翻译成VB代码?谢谢! private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { //自动点击弹出确认或弹出提示 IHTMLDocument2 vDocument = (IHTMLDocument2)webBrowser1.Document.DomDocument; vDocument.parentWindow.execScrip

php-java和PHP有纯中文的官方手册吗?还是只有部分的翻译?

问题描述 java和PHP有纯中文的官方手册吗?还是只有部分的翻译? java和PHP有纯中文的官方手册吗?还是只有部分的翻译?我英文不好,能不能学呢? 解决方案 http://cn2.php.net/manual/zh/index.php 解决方案二: java的JDK有中文版的API,PHP网上也有中文手册.现在网络资源这么丰富,只有肯上心,学东西还是很容易的. 选定一个完整的视频教程,跟着练习,上手是很容易的. 我就是2010年暑假跟着传智播客视频教程自学的Java,现在已经很熟练了.祝好

傲游浏览器怎么翻译网页

  步骤一:没有傲游浏览器的童鞋 步骤二:点开下拉====勾选"翻译". 步骤三:输入你想要的翻译的网址,选定你想翻译的内容 步骤四:耐心等待翻译结果

Word 2010中的“翻译字典”

  1.打开一篇文字文档,并且里面与你有需要翻译的文字,例如,我们这里先选择一篇中文散文; 2.在功能区点击"审阅"选项卡,选择"语言"区域的"翻译"选项组,单击"翻译所选文字"; 3.单击"审阅"功能卡,点击"语言"区域的"翻译"选项组,在弹出的下拉菜单中选择"选择转换语言"; 4.此时窗口会弹出一个"翻译语言选项"的对话框,

Word每一页的左边显示英语右边显示中文翻译

  现在,您想实现的效果是,在每一页里面,左边是英文,右边是对应的翻译好的中文.像这样的排版方式,可以方便我们更好的学习英语. ①使用分栏的是不科学的 要解决这个问题,很多人第一时间就会想到分栏,想把英文放在栏的左边,中文放在栏的右边.然而,这是可行的,却是不科学的. 因为,使用Word里面的自动分栏,原文英文和翻译后的中文,很难一一对应,造成学习上的困难.另外,如果您想再排版实现一一对应,那么,难度是非常大. ②使用文本框也是不合理的 以上方法难以实现.很多人会想到使用文本框的办法. 即在Wo

360浏览器如何翻译英文网页

  整个网页翻译: 1.打开360浏览器,在浏览器中打开你想浏览的英文网站,选择浏览器上面的翻译三角符号. 2.选择第一项,翻译当前网页,就会开始翻译了. 3.翻译完后,就可以看到全部是中文了. 单个句子翻译: 1.同样选择浏览器上面的翻译,选择第二项翻译文字. 2.在弹出的翻译对话框中,将要翻译的英文复制到文本框中,点击下面的翻译. 3.翻译完后,翻译的结果就在下面了,很方便的.