2

我有这个 .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

现在,我想做的是在这两个文本字段的左侧和右侧添加填充:fieldEmail因此fieldPassword它有一些空间,因为我在两个文本字段上都放置了一个图像作为背景。

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

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。这个版本是否有特殊代码可以在文本字段上添加填充?谢谢你。

4

1 回答 1

4

leftViewMode并且leftView是 的属性UITextField而不是类方法。您需要将它们分配给实例。

yourTextField.leftViewMode = UITextFieldViewModeAlways;
yourTextField.leftView     = fieldEmail;
于 2013-09-08T09:58:50.353 回答