按钮对齐方式

typedef NS_ENUM(NSInteger, UIControlContentHorizontalAlignment) {

UIControlContentHorizontalAlignmentCenter = 0,

UIControlContentHorizontalAlignmentLeft   = 1,

UIControlContentHorizontalAlignmentRight  = 2,

UIControlContentHorizontalAlignmentFill   = 3,

};

UIButton * btn_fenxiang = [ToolsFunc CreateButtonWithFrame:CGRectMake(30, 10, 40, 20) andimage:@"fenxiang" ];

    [btn_fenxiang setContentHorizontalAlignment:UIControlContentHorizontalAlignmentRight];

    [btn_fenxiang addTarget:self action:@selector(fenxiang:) forControlEvents:UIControlEventTouchUpInside];

    [rightitem addSubview:btn_fenxiang];

    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:rightitem];

  

时间: 2024-11-01 22:10:40

按钮对齐方式的相关文章

iOS上如何让按钮文本左对齐问题(对齐方式)

// button.titleLabel.textAlignment = NSTextAlignmentLeft; 这句无效 button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft; button.titleEdgeInsets = UIEdgeInsetsMake(0, 10, 0, 0); 这里使用button.titleLabel.textAlignment = NSTextAlignmentL

iOS 中UI控件的各种对齐方式总结

1.textAligment : 文字的水平方向的对齐方式 取值 NSTextAlignmentLeft      = 0,    // 左对齐 NSTextAlignmentCenter    = 1,    // 居中对齐 NSTextAlignmentRight    = 2,    // 右对齐 哪些控件有这个属性 一般能够显示文字的控件都有这个属性 UITextField UILabel UITextView ... (UILabel 默认是居中对齐的,并没有提供顶部对齐的方式-_-,

如何用Beyond Compare设置比较文件夹对齐方式

在文件比较工具中Beyond Compare 是非常专业的,其特点是性能强大并且容易操作,适用范围也非常的广,不论是文件夹,图片,程序代码,文本,表格都可以拿来比较.在使用Beyond Compare的过程中我们会发现其有着自己默认的排列方式,但是有时我们需要换种方式.下面我们来给大家分享一下如何用Beyond Compare设置比较文件夹对齐方式? 原文:http://www.beyondcompare.cc/jiqiao/wenjianjia-duiqi.html 具体操作步骤如下所示 步骤

对齐方式

水平对齐方式--text-align属性  left         左 默认值 right        右 center       中 justify      两端对齐垂直对齐--vertical-align属性 middle top bottom

bootstrap37-Bootstrap 下拉菜单对齐方式

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Bootstrap 下拉菜单对齐方式</title> <link rel="stylesheet" href="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/css/bootstrap.min.css&quo

windows和Linux内存的对齐方式

一.内存对齐的初步讲解 内存对齐可以用一句话来概括: "数据项只能存储在地址是数据项大小的整数倍的内存位置上" 例如int类型占用4个字节,地址只能在0,4,8等位置上. 例1: #include <stdio.h> struct xx{ char b; int a; int c; char d; }; int main() { struct xx bb; printf("&a = %p\n", &bb.a); printf("

PdfPCell对齐方式,边框,边框颜色的使用 (转)

原文:http://www.cnblogs.com/LifelongLearning/archive/2011/06/22/2086802.html PdfPTable和PdfPCell对象,我们可以制作出丰富多彩的表格,可以制作出跨行.跨列,不同表格线,单元格中的文字旋转等效果,如下所示: 1.文本模式: PdfPCell cell = new PdfPCell(new Paragraph("some text")); 2.组合模式: PdfPCell cell = new PdfP

CSS3----vertical-align(文本垂直对齐方式)

一.代码: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>文本垂直对齐方式vertical-align</title> <style type="text/css"> .head{ margin: 0 0 0 100px; } .container{ margin: 0 0 0 100px; } .contai

141设置屏幕中文本的横向对齐方式(扩展知识:设置标签行间距)

效果如下: ViewController.h 1 #import <UIKit/UIKit.h> 2 3 @interface ViewController : UIViewController 4 @end ViewController.m 1 #import "ViewController.h" 2 #import "KMLabel.h" 3 4 @interface ViewController () 5 - (void)layoutUI; 6 @