0

我想要一个类似于此屏幕截图的登录:

截屏

问题是我不知道如何做底部,这两个选项。当我推送时,我想放另一个视图——注册视图或重置密码视图——但我不知道如何做这些元素(它们是标签吗?)。

4

4 回答 4

3

它们可以是UIButton自定义类型和文本值:

在此处输入图像描述

于 2012-10-08T12:16:14.823 回答
2

为此,首先您需要UILabel显示“Tumblr”选项。然后你创建一个UITableView. 此 TableView 将包含 2 个部分,例如“电子邮件”和“密码”。使 UITableView 的边缘使用圆角

TableView.layer.cornerRadius = 10;

现在要推送到另一个视图,您只需在UITableViewCellsin 中写入任何数据

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

并使用

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

您可以将该信息传递给您同样提到的重置密码选项的下一个视图。创建一个UIButton并将其命名为“登录”。

我这就是你想要达到的目标??有任何疑问请告诉。谢谢 :)

编辑:

对于下面的选项,您可以做的是将其设置UIButtons自定义并将其文本写入“重置密码”等。然后在他们单击时,您可以打开下一个视图或同一视图本身的 presentModalViewController,您可以在其中将能够进行您的登录并重置内容。希望能帮助到你 !!!

于 2012-10-08T12:19:08.810 回答
1

它是一个标签,您可以将它与操作方法链接起来。

于 2012-10-08T12:18:15.957 回答
1
//using   UITapGestureRecognizer to easy to set target to another view

 UITapGestureRecognizer *tab_1 = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(action_1)];
    tab_1.delegate = self;
    [label1 addGestureRecognizer: tab_1];

    UITapGestureRecognizer *tab_2 = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(action_2)];
    tab_2.delegate = self;
    [label2 addGestureRecognizer: tab_2];

    -(void)action_1{
    //your action or view;
    }

    -(void)action_2{
    //your action or view;
    }
于 2012-10-08T13:00:53.733 回答