Как скрыть клавиатуру, если у меня есть UIView (содержит несколько текстовых представлений) в Scrollview - PullRequest
0 голосов
/ 05 марта 2012

У меня есть несколько textview в моем UIVIew, которые содержатся в scrollview.Во-первых, scollview не активируется, когда я касаюсь его и хочу скрыть клавиатуру после завершения редактирования текстового представления.Поэтому я должен был создать имя класса subUIView наследовать от scrollview.В этом классе я перезаписываю сенсорные сенсорные события.как код удар.Но после этого функция textviewbeingediting больше не действовала.Это все о touchbegan событиях вызова, даже когда я хочу отредактировать текстовое представление.Не могли бы вы предложить мне несколько советов для решения проблемы? Спасибо

//
//  **subUIView.h**
#import <UIKit/UIKit.h>

@interface subUIView :   UIScrollview
{

 }


@end


//  **subUIView.m**
#import "subUIView.h"

@implementation subUIView
- (id)initWithFrame:(CGRect)frame{
self = [super initWithFrame:frame];
self.delegate=self;
//return [super initWithFrame:frame];
if (self) {
    // Initialization code

}
return self;}

NSInteger a=0;


- (void) touchesBegan: (NSSet *) touches withEvent: (UIEvent *) event {   NSLog(@"touch began ");
// If not dragging, send event to next responder
if (!self.dragging)
{
      [self.nextResponder touchesBegan: touches withEvent:event]; 
 }}

в коде удара, я выделяю scrollview из subUIView и кодирую функцию textviewbeginediting.

//
//  **ReadExperienceInfoViewController.h**

#import <UIKit/UIKit.h>
#import <QuartzCore/QuartzCore.h>
#define ExperienceTableName  @"pockets"
@class subUIView;
@interface ReadExperienceInfoViewController : UIViewController <UITextFieldDelegate,UITextViewDelegate> {
subUIView *scrollView;

UIView *upView;

UITextField *bookNameTextField;
UITextView *bookExprection;
NSString *getFullDateStr;

BOOL dragging;
}

 @property (nonatomic, retain) UIView *upView;
 @property (nonatomic, retain) subUIView *scrollView;


//
// **ReadExperienceInfoViewController.m**

//- (void)loadView{

scrollView=[[subUIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
scrollView.contentSize=CGSizeMake(320, 960);
scrollView.backgroundColor=[UIColor colorWithPatternImage :[UIImage imageNamed:@"infomation.png"]];
scrollView.showsVerticalScrollIndicator=YES;
upView=[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];

upView=[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 960)];
[upView setUserInteractionEnabled:YES];

UILabel *bookName = [[UILabel alloc] initWithFrame:CGRectMake(20, 20, 100, 30)];
bookName.backgroundColor = [UIColor clearColor];
bookName.text = @"Title";
bookName.font=[UIFont boldSystemFontOfSize:16];
[upView addSubview:bookName];
[bookName release];

bookNameTextField = [[UITextField alloc] initWithFrame:CGRectMake(20, 50, 280, 30)];
bookNameTextField.backgroundColor = [UIColor whiteColor];
bookNameTextField.returnKeyType=UIReturnKeyDone;
bookNameTextField.delegate=self;
[upView addSubview:bookNameTextField];

//lowerView=[[UIView alloc] initWithFrame:CGRectMake(0, 90, 320, 170)];
UILabel  *bookExprectionLabel = [[UILabel alloc] initWithFrame:CGRectMake(20, 80, 200, 30)];
bookExprectionLabel.text = @"Content";
bookExprectionLabel.font=[UIFont boldSystemFontOfSize:16];
bookExprectionLabel.backgroundColor = [UIColor clearColor];
[upView addSubview:bookExprectionLabel];
[bookExprectionLabel release];

bookExprection = [[UITextView alloc] initWithFrame:CGRectMake(20, 110, 280, 140)];
bookExprection.backgroundColor = [UIColor whiteColor];
bookExprection.font = [UIFont systemFontOfSize:14];    
bookExprection.delegate=self;
[upView addSubview:bookExprection];

self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithTitle:@"Save" 
                                                                           style:UIBarButtonItemStylePlain
                                                                          target:self action:@selector(updateExperience)]
                                          autorelease];

self.title= bookNameStr;       
self.view=scrollView;

}


- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.3];
upView.frame=CGRectMake(0, 0, 320, 960);
[UIView commitAnimations];
[bookExprection resignFirstResponder];
[bookNameTextField resignFirstResponder];
}


-(void)textViewDidBeginEditing:(UITextView *)textView{
NSLog(@"texview dig begin editing");
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.3];
if (textView==bookExprection) {
    upView.frame=CGRectMake(0, -80, 320, 0);          
}    
[UIView commitAnimations];  


}

1 Ответ

0 голосов
/ 05 марта 2012

Ваш subUIView.h файл должен реализовывать протокол UITextFieldDelegate, поэтому ваш viewcontroller отвечает на методы делегата для текстового поля.

То же самое для представления Scroll, вы должны реализовать ScrollView

//subUIView.h
@interface subUIView : UIViewController <UIScrollViewDelegate, UITextFieldDelegate>{
//do stuff
}

Затем, конечно, вы должны написать scrollView.delegate = self;, чтобы viewcontroller отвечал на методы делегата для представления прокрутки.

Надеюсь, это поможет

...