0

このメソッドで textfield を取得して textfieldshouldreturn を呼び出すにはどうすればよいですか? UIViewにはデリゲートプロパティがないため、機能していないと思いますが、メソッド内で作成したUIViewをプロトコルに準拠させる方法がわかりません。委任に関するいくつかの投稿を見てきましたが、試したことはすべてうまくいきませんでした。シンプルなものだと確信しています。前もって感謝します。

- (void) launchCreateNewListActionSheet{
    self.listActionSheet= [[UIActionSheet alloc] initWithTitle:@"Create A New List"
                                                  delegate:self
                                         cancelButtonTitle:nil
                                    destructiveButtonTitle:nil
                                         otherButtonTitles:nil];

    UIView *addToNewList = [[UIView alloc] initWithFrame:CGRectMake(0, 44, 320, 464)];
    addToNewList.backgroundColor = [UIColor whiteColor];

    UILabel *addToNewListLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 23, 100, 20)];
    addToNewListLabel.text = @"List Name: ";

    UITextField *enterNewListName = [[UITextField alloc] initWithFrame:CGRectMake(100, 20, 180, 30)];
    enterNewListName.layer.borderWidth = 1;
    enterNewListName.layer.borderColor = [[UIColor blackColor] CGColor];
    enterNewListName.delegate = self;

    [addToNewList addSubview:addToNewListLabel];
    [addToNewList addSubview:enterNewListName];


    UIBarButtonItem *doneBtn = [[UIBarButtonItem alloc]     initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(addToExistingList)];

    UIBarButtonItem *cancelBtn = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(cancelListPicker)];

    UIBarButtonItem *fixedCenter = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
fixedCenter.width = 180.0f;

    UIToolbar* toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
    toolbar.barStyle = UIBarStyleBlackOpaque;
    [toolbar sizeToFit];

    [toolbar setItems:@[cancelBtn, fixedCenter, doneBtn] animated:YES];

    [self.listActionSheet addSubview:toolbar];
    [self.listActionSheet addSubview:addToNewList];
    [self.listActionSheet showInView:self.view];
    [self.listActionSheet setBounds:CGRectMake(0,0,320, 464)];
} 

これが私の.hファイルです。他のメソッドのテキストフィールドで機能しているため、実装しました。

#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import "ZBarSDK.h"
#import "ProgressView.h"

@class ScannerViewController;

@protocol ScanViewDelegate <NSObject>;
@required
-(void)postURL:(NSURL*)url selectedAction:(NSString*)action;
@end

@interface ScannerViewController : UIViewController <ZBarReaderViewDelegate,        UITableViewDelegate, UITableViewDataSource, UITextFieldDelegate, UIWebViewDelegate,    UIPickerViewDelegate, UIActionSheetDelegate>

    id <ScanViewDelegate> delegate;
}
@property (weak, nonatomic) IBOutlet ZBarReaderView *readerView;
@property (weak, nonatomic) IBOutlet UITableView *scannerList;
@property (retain) id delegate;

@property (strong) NSMutableArray* barCodeArray;
@property (strong) NSMutableArray* quantityArray;
@property (strong) NSURL* url;
@property (strong) NSString* action;
@property NSString *listItems;
@property NSString *listItemNames;
@property NSArray *listItemNamesArray;
@property NSArray *hrefArray;
@property int pickerViewRow;
@property (strong) UIWebView *webView;
@property (strong) ProgressView* loading;
@property BOOL isLoading;
@property (strong) UITextField *enterNewListName;
@property (strong) UITextField *addToNewListDescription;
@property (strong) NSMutableArray *textFieldArray;

-(IBAction)sendToCart:(id)sender;
-(IBAction)sendToList:(id)sender;
-(void)startLoadingURL;
@end

textfieldshouldreturn メソッドは次のとおりです。

-(BOOL)textFieldShouldReturn:(UITextField *)textField
{
    if([self.textFieldArray containsObject:textField])
    {
        NSUInteger index = [self.textFieldArray indexOfObject:textField];
        NSNumber *newQuantity = [NSNumber numberWithInteger:[textField.text integerValue]];
        [self.quantityArray replaceObjectAtIndex:index withObject:newQuantity];
        NSLog(@"Your new quantity is: %@", newQuantity);
    }
    [textField resignFirstResponder];
    return YES;
}
4

4 に答える 4

0

まず第一に、クラスが必要なメソッドを持つプロトコルに準拠していない場合、デリゲートをクラスに設定する行で警告が生成されます。

カスタム クラスを UITextField のデリゲートにしたい場合は、それを宣言し、必要なメソッドを実装する必要があります。あなたの場合、次のことを行う必要があります。

YourCustomView.h

@interface YourCustomView : UIView (or other class) <UITextFieldDelegate> // this will show that this class conforms to UITextFieldDelegate protocol
//other methods or properties here
@end

YourCustomView.m

@implementation YourCustomView 

-(void)launchCreateNewListActionSheet {
   //some code here 
    UITextField *textField = //alloc init methd
    textField.delegate = self;
}

#pragma mark - UITextFieldDelegate //this is optional only if you want to structure the code
- (BOOL)textFieldShouldReturn:(UITextField *)textField { 
     //method called when the text field resign first responder
}

//必要に応じてデリゲート メソッドを追加できます。@終わり

于 2013-07-15T17:39:25.043 に答える
0

それぞれのクラスが と互換性を持つようにしましたUITextFieldDelegateか?

現在のクラスの .h ファイルに移動し、UITextFieldDelegate と互換性を持たせてください。

例: ClassName がHomeController

次のような警告が表示されると想定しています。

Assigning to id<UITextFieldDelegate> from incompatible type "HomeController"

解決:

@interface HomeController : UIViewController <UITextFieldDelegate>
    // YOur Class Variable.
@end
于 2013-07-15T17:37:17.827 に答える