【发布时间】:2012-06-26 15:40:34
【问题描述】:
首先我想向您展示我的代码/故事板:
这是我的故事板:我有一个小 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 函数中我不知道为什么程序NEVER 调用“giveMetheNumbersOfSquare”函数。drawRect 中的“numberOfSquare”保持为0! !! 我不明白为什么程序从不输入“giveMeTheNumberOfSquare”函数!!
谢谢!!
【问题讨论】:
标签: iphone objective-c function delegates call