- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经尝试解决这个问题好几个小时了。我在任何地方找到的帖子都没有提供解决方案。问题是 textField 在 subview 中,我不知道如何让它响应 Return 按钮以隐藏键盘。这是我的 View Controller ;
#import <UIKit/UIKit.h>
#import "Combatant.h"
@interface ViewController : UIViewController <CombatantDelegate>
- (IBAction) addView;
- (IBAction) roll;
@end
#import "ViewController.h"
static int startY = 60;
@interface ViewController ()
{
NSMutableArray * customViews;
}
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
customViews = [[NSMutableArray alloc] init];
}
- (IBAction) addView
{
Combatant * thing = [[NSBundle mainBundle] loadNibNamed:@"Combatant" owner:nil options:nil][0];
[self.view addSubview: thing];
thing.center = CGPointMake(self.view.center.x, startY + customViews.count * thing.bounds.size.height);
thing.combatDelegate = self;
[customViews addObject:thing];
}
- (IBAction) roll
{
for (Combatant * cust in customViews)
{
[cust rollWasTapped];
}
}
@end
这是我的自定义类;
#import <UIKit/UIKit.h>
@class Combatant;
@protocol CombatantDelegate <NSObject>
@end
@interface Combatant : UIView <UITextFieldDelegate>
{
IBOutlet UITextField * name;
IBOutlet UITextField * base;
IBOutlet UITextField * die;
IBOutlet UITextField * mod;
IBOutlet UILabel * total;
NSString *value;
int dRoll;
int cBase;
int cMod;
}
@property (nonatomic, strong, readwrite) NSString *value;
@property (nonatomic, strong) IBOutlet UITextField * name;
@property (nonatomic, strong) IBOutlet UITextField * base;
@property (nonatomic, strong) IBOutlet UITextField * die;
@property (nonatomic, strong) IBOutlet UITextField * mod;
@property (nonatomic) IBOutlet UILabel * total;
-(void) rollWasTapped;
-(BOOL) textFieldShouldReturn:(UITextField *)textField;
@property (nonatomic, weak) id<CombatantDelegate> combatDelegate;
-(int) dieRoll;
-(int) convertBase;
-(int) convertMod;
@end
#import "Combatant.h"
@implementation Combatant
@synthesize value;
@synthesize name;
@synthesize base;
@synthesize die;
@synthesize mod;
@synthesize total;
- (id)initWithCoder:(NSCoder *)aDecoder
{
self = [super initWithCoder:aDecoder];
if (self) {
}
return self;
}
-(BOOL) textFieldShouldReturn:(UITextField *)textField{
[name resignFirstResponder];
return YES;
}
- (void) rollWasTapped;
{
int tot;
tot = [self convertBase] + [self dieRoll] + [self convertMod];
total.text = [NSString stringWithFormat:@"%i", tot];
NSLog(@" totaling %i ", tot);
}
-(int) dieRoll
{
int val = [die.text intValue];
if (val <7 && val >0)
{
NSLog(@" %i die", val);
} else {
NSLog(@" there are no dice");
val = 0; }
int d = 0;
for (int i = 0; i < val; i++) {
d = d + arc4random()%6 + 1;
}
dRoll = d;
NSLog(@"%i die roll result = %i ", val, dRoll);
return dRoll;
}
-(int) convertBase
{
cBase = [base.text intValue];
NSLog(@"base = %i", cBase);
if (cBase > -1 && cBase < 20)
{
return cBase;
}
return 0;
}
-(int) convertMod
{
cMod = [mod.text intValue];
NSLog(@"mod = %i", cMod);
if (cMod > -20 && cMod < 20)
{
return cMod;
}
return 0;
}
- (void) dealloc
{
self.combatDelegate = nil;
}
@end
除键盘隐藏外,该代码在各个方面都完美无缺。
最佳答案
在最基本的意义上,您希望当前事件的文本字段 resignFirstResponder。您的问题似乎是如何访问该文本字段。
编辑:以下段落快速跳转主题,因为我正在详细说明一些可能的解决方案而不是 1 个。
目标:访问文本字段。解决方案:1) 创建一个在自定义类上公开文本字段的属性。2) 创建一个调用自定义类上的文本字段的函数。
假设每个 View 上有 4 个文本字段,您有 4 个属性公开文本字段?
在那种情况下,继续创建一个函数,并在该函数中,在 View 中,确保它调用 self.textField1 resign...等等,然后是 self.textField2,只要确保它命中所有这些。
目前您在回调中调用 name resignFirstResponder。但首先让我们回溯一下。所有 textFields 在其委托(delegate)上调用 textFieldShouldReturn。因此,请确保所有 4 个文本字段都具有委托(delegate) View 。在界面生成器或代码中,self.name.delegate(或 self.name.textFieldDelegate,我完全忘记了)= self;每一个。
还有,记得叫“self.”,“name”是别的。其实自己。访问属性访问器。但是它创建的不可见变量称为 _name(开头有下划线,这适用于所有属性)。
现在我们知道您的所有字段都被正确调用了,让我们回到委托(delegate)。如果您确实希望“当前事件的、正在返回的”文本字段退出其响应者,委托(delegate)将在其对象 View 中传递 textField,因此请记住在当前返回的字段上调用 resignFirst...。
[textField resignFirstResponder]
当然,这属于委托(delegate)回调方法,因为 textField 不存在,以免您通过其名称(self.name 或其他名称)访问它。
最后但同样重要的是,在所有内容后面放一个按钮,但要大到足以覆盖屏幕,让它调用一个函数。在该函数中,您可以“展开”对每个文本字段的调用。基本上,让该函数在每个自定义 View 上调用“hideTheKeyboard”或任何您命名的函数(调用 resignFirst 的函数...在自定义 View 中的所有字段上)。
它应该看起来像带有 for(view in customViews) 的函数,但它不是调用 roll,而是调用您的自定义函数。
在那个函数中,仅仅因为它是一个可能的解决方案,你也可以做类似的事情
- (IBAction) roll
{
for (Combatant * cust in customViews)
{
[cust.name resignFirstResponder];
[cust.die resignFirstResponder];
// and on for the other 2
}
}
但是,如您所知,您可能希望将其封装到您调用的函数中的原因仅仅是为了减少代码行数/简单性。比找到可行的解决方案更重要的是您了解如何以及为什么可以这样做。我在上面列出了 3 种解决方案(使用属性、使用函数访问 textField 或使用委托(delegate))。
最简单的是委托(delegate),最紧凑的是函数,最广泛的是属性。 (每个也有限制)。我想提供一个透彻的理解,以便您可以看到它们。
关于ios - 尝试使用 -(BOOL) textFieldShouldReturn :(UITextField *)textField; to make the keyboard go away in a subview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28145707/
我是一名优秀的程序员,十分优秀!