• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - XCode : How to Add Left and Right Padding on Text Field?

[复制链接]
菜鸟教程小白 发表于 2022-12-13 04:02:56 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我有这个 .h 代码:

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController
@property (strong, nonatomic) IBOutlet UITextField *fieldEmail;
@property (strong, nonatomic) IBOutlet UITextField *fieldPassword;
@property (strong, nonatomic) IBOutlet UILabel *titleLogin;

- (IBAction)buttonRegister;
- (IBAction)buttonLogin;
- (IBAction)loginFacebook;
- (IBAction)loginTwitter;

@end

这是我的 .m 代码:​​

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [_fieldEmail setFont:[UIFont fontWithName"ABeeZee-Regular" size:14]];
    [_titleLogin setFont:[UIFont fontWithName"Raleway-ExtraLight" size:28]];

    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (IBAction)buttonRegister {
}

- (IBAction)buttonLogin {
}

- (IBAction)loginFacebook {
}

- (IBAction)loginTwitter {
}
@end

现在,我要做的是在这两个文本字段的左侧和右侧添加填充: fieldEmailfieldPassword 所以它有一些空间,因为我放了一个图像作为两个文本字段的背景。

我尝试在 - (void)viewDidLoad 下的 .m 文件中添加此代码:

UIView *fieldEmail = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 10, 10)];
[UITextField setLeftViewMode:UITextFieldViewModeAlways];
[UITextField setLeftView:fieldEmail];

但是我的 XCode 给了我这个错误信息:

no known class method for selector 'setLeftViewMode'
no known class method for selector 'setLeftView'

顺便说一句,我使用的是 XCode 4.6.3。这个版本是否有特殊代码可以在文本字段上添加填充?谢谢。



Best Answer-推荐答案


leftViewModeleftViewUITextField 的属性,不是类方法。您需要将它们分配给实例。

yourTextField.leftViewMode = UITextFieldViewModeAlways;
yourTextField.leftView     = fieldEmail;

关于ios - XCode : How to Add Left and Right Padding on Text Field?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18682390/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap