0

私のコード:</p>

 - (void)showWithStatus:(NSString *)status barColor:(UIColor*)barColor textColor:(UIColor*)textColor click:(SEL)click{
    if(!self.superview)
        [self.overlayWindow addSubview:self];
    [self.overlayWindow setHidden:NO];
    [self.topBar setHidden:NO];
    self.topBar.backgroundColor = barColor;
    NSString *labelText = status;
    CGRect labelRect = CGRectZero;
    CGFloat stringWidth = 0;
    CGFloat stringHeight = 0;
    if(labelText) {
        CGSize stringSize = [labelText sizeWithFont:self.stringLabel.font constrainedToSize:CGSizeMake(self.topBar.frame.size.width, self.topBar.frame.size.height)];
        stringWidth = stringSize.width;
        stringHeight = stringSize.height;

        labelRect = CGRectMake((self.topBar.frame.size.width / 2) - (stringWidth / 2), 0, stringWidth, stringHeight);
    }
    self.stringLabel.frame = labelRect;
    self.stringLabel.alpha = 0.0;
    self.stringLabel.hidden = NO;
    self.stringLabel.text = labelText;
    self.stringLabel.textColor = textColor;

    clickBn=[[UIButton alloc]initWithFrame:self.stringLabel.frame];
    clickBn.backgroundColor=[UIColor blueColor];
    [clickBn addTarget:self action:click forControlEvents:UIControlEventTouchUpInside];

    if(!clickBn.superview)
        [self.topBar addSubview:clickBn];


    [UIView animateWithDuration:0.4 animations:^{
        self.stringLabel.alpha = 1.0;
    }];
//    [self setNeedsDisplay];
}

そして、このメソッドを呼び出します:

 - (IBAction)successButtonPressed:(id)sender {
[KGStatusBar showSuccessWithStatus:@"Successfully synced" click:@selector(clickBn)];
 }


 - (void)clickBn {
NSLog(@"sss");
 [KGStatusBar dismiss];
}

NSLog(@"sss") は表示されません。customViewのUIButtonにメソッドを渡したいのですが、UIButtonをクリックしても反応しません。

4

3 に答える 3

1

@interfaceヘッダー ファイルの前後にある .h ファイルで、コントロールのデリゲートを作成します。

@protocol YourControlDelegate <NSObject>

-(void) delegateMethod;

@end

@interface

@property (nonatomic,assign) id <YourControlDelegate> yourdelegate;

で。.m @synthesize_yourdelegate

ボタンクリックアクションコールで[self.yourdelegate delegateMethod];

あなたのViewController追加YourControlDelegateで次のように

@interface YourVC : UIViewController <YourControlDelegate>

メソッドを.m実装するdelegate

-(void) delegateMethod
{
    //you code.
}

ここでボタンをクリックすると、delegateMethodinviewControllerが呼び出されます。

于 2013-04-23T07:20:06.967 に答える
0

action はセレクター メソッドである必要があります。

:たとえば、ボタンをメソッドユーザーに引数として渡したい場合

[button addTarget:self action:@selector(buttonClicked:) 
                                         forControlEvents:UIControlEventTouchUpInside];

-(void)buttonClicked:(UIButton *)sender
{
   //your code and you can also access the button properties using sender.
}

それが好ましいです。送信者(ボタン)を使用したくない場合は、除外します:

于 2013-04-23T07:00:12.067 に答える
0

これはあなたのclickBnメソッドですよね?

- (void)clickBn {
NSLog(@"sss");
 [KGStatusBar dismiss];
}

now what you doing in action? action:click??
do like following 

clickBn=[[UIButton alloc]initWithFrame:self.stringLabel.frame];
    clickBn.backgroundColor=[UIColor blueColor];
    [clickBn addTarget:self action:@selector(clickBn)  forControlEvents:UIControlEventTouchUpInside];
 If you want to call method which is in another class then do like this 
first make object of that class


  ViewController *dvController = [ViewController alloc] init];
   after that [dvController methodName];
do this all in your clickBn method First clickBn method will be called and it will call that another class method which you wanted to call 
 NOTE: you need to import that class in header 
于 2013-04-23T06:56:14.650 に答える