美文网首页iosiOS_UIKit
NSText设置字符串方向和排版方向

NSText设置字符串方向和排版方向

作者: 絮语时光杨 | 来源:发表于2018-05-10 16:50 被阅读0次

文字方向
typedef NS_ENUM(NSInteger, NSTextAlignment) {
NSTextAlignmentLeft = 0,
NSTextAlignmentCenter = 1,
NSTextAlignmentRight = 2,
NSTextAlignmentRight = 1,
NSTextAlignmentCenter = 2,
NSTextAlignmentJustified = 3,
NSTextAlignmentNatural = 4,
}
排版方向
typedef NS_ENUM(NSInteger, NSWritingDirection) {
NSWritingDirectionNatural = -1, // Determines direction using the Unicode Bidi Algorithm rules P2 and P3
NSWritingDirectionLeftToRight = 0, // Left to right writing direction
NSWritingDirectionRightToLeft = 1 // Right to left writing direction
}

相关文章

  • NSText设置字符串方向和排版方向

    文字方向typedef NS_ENUM(NSInteger, NSTextAlignment) {NSTextAl...

  • Word排版之页面设置

    ·Word排版之页面设置 01 设置纸张大小和方向 一般来说,论文要求的纸张大小为A4,方向为纵向 02 定义页边...

  • UICollectionView横向分页

    UICollectionView设置滚动方向为水平方向是,item顺序是从上往下,从左往右排版的,而实际想要达到i...

  • 弹性盒模型

    弹性盒模型(1)平均分配 (2)设置主轴方向为水平方向 (3)设置主轴方向为垂直方向 (4)富裕空间平均分配在每个...

  • UICollectionView自定义item水平间距

    items之间的水平间距,和滚动方向有关系! layout.scrollDirection为垂直方向时,得设置mi...

  • ios开发中如何控制屏幕旋转

    1.设置app支持的屏幕方向 2.单独设置控制器支持的方向 3.在代码中旋转设备方向 4.控制器旋转到设备目前的方向

  • UIView 添加手势

    通过UISwipeGestureRecognizer.direction 来设置滑动的方向,系统定义方向有:

  • iOS 设置图片方向

    -(UIImage*)image:(UIImage*)image rotation:(UIImageOrienta...

  • Android设置屏幕方向

    前言 在Android开发过程中,我们有时也会涉及到屏幕方向的问题,为了调用方便,我封装了一个工具类—— Scre...

  • UIButton设置文字方向

    button.titleLabel.textAlignment = NSTextAlignmentLeft; 该方...

网友评论

    本文标题:NSText设置字符串方向和排版方向

    本文链接:https://www.haomeiwen.com/subject/omctdftx.html