调用委托方法(iOS)

时间:2012-06-26 15:40:35

标签: iphone objective-c function delegates call

我想要向您展示我的代码/故事板: StoryBoard

这是我的故事板:我有一点UISlider和UIView。 UIView是一个自定义视图,他的类是“SquareView”。这是代码:

SquareView.h

#import <UIKit/UIKit.h>

    @class SquareView;

    @protocol SquareViewDelegate <NSObject>

    -(int)giveMeTheNumbersOfSquare:(SquareView *)squareView;

    @end

    @interface SquareView : UIView

    @property (nonatomic , weak) IBOutlet id<SquareViewDelegate> delegate;

    @end

SquareView.m

#import "SquareView.h"

@implementation SquareView
@synthesize delegate;
- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code
    }
    return self;
}
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect
{

    int numberOfSquare = [delegate giveMeTheNumbersOfSquare:self];
    NSLog(@"Value of numberOfSquare in drawRect---> %d" ,numberOfSquare);
    //numberOfSquare = 20;
    for (int i=0; i<numberOfSquare; i++) {
        float x = arc4random() % (int)self.frame.size.width - 20;
        float y = arc4random() % (int)self.frame.size.width - 20;

        UIRectFill(CGRectMake(x, y, 20.0, 20.0));
       // NSLog(@"X---> %f" ,x);
        //NSLog(@"Y---> %f" ,y);
        [self setNeedsDisplay];
    }

    // Drawing code
}
@end

现在是ViewController ...... ViewController是SquareView的代表。

ViewController.h

#import <UIKit/UIKit.h>
#import "SquareView.h"

@interface TestViewController : UIViewController <SquareViewDelegate>

@property (weak) IBOutlet SquareView *squareView;
@property(weak) IBOutlet UISlider *slider;

-(IBAction)changeSquareNumbers:(id)sender;


@end

ViewController.m

#import "TestViewController.h"

@interface TestViewController ()
{
    int _squareCount;
}

@end

@implementation TestViewController

@synthesize squareView = _squareView;
@synthesize slider = _slider;

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

-(void)awakeFromNib
{
    [_squareView setDelegate:self];
    _squareCount = 50;
    [self.squareView setNeedsDisplay];
}

/********* Delegate Method *********/
-(int)giveMeTheNumbersOfSquare:(SquareView *)squareView
{
    //return _squareCount;
    NSLog(@"Value of _squareCount in giveMeTheNumberOfSquare ---> %d" ,_squareCount);
    return _squareCount;
}

-(IBAction)changeSquareNumbers:(UISlider *)sender
{
    NSLog(@"Value of slider in changeSquareNumbers --> %f" ,[sender value]]);
    _squareCount = (int)[sender value];
    NSLog(@"Value of _sqareCount ---> %d" ,_squareCount);
    [self.squareView setNeedsDisplay];
}

现在......在SquareView.m文件中,在drawRect函数中我不知道为什么程序从不调用“giveMetheNumbersOfSquare函数。”drawRect中的“numberOfSquare”保持为0! ! 我不明白为什么程序永远不会进入“giveMeTheNumberOfSquare”功能!!

谢谢!

1 个答案:

答案 0 :(得分:0)

确保正确设置了委托。您可能需要分配或初始化squareView。此外,如果您使用的是故事板,则可能不会调用awakeFromNib

相关问题