Int值不更新CALayer

时间:2016-02-17 15:53:49

标签: objective-c xcode int

我有一个像这样声明的int实例变量

...
Performance on MRI may be improved with the concurrent-ruby-ext gem. Please see http://concurrent-ruby.com ...
/Users/mdurrant/eq/lynx/spec/support/capybara.rb:69:in `<top (required)>': undefined method `default_max_wait_time=' for Capybara:Module (NoMethodError)

比我的图层.m文件中的

@interface myLayer : CALayer{
    int compareValue;
}

但是-(void) drawInContext:(CGContextRef) context{ compareValue ++; NSLog(@"%i",compareValue); } 始终为0 !!!

为什么不更新???

1 个答案:

答案 0 :(得分:0)

您确定在创建myLayer实例的时候实际使用的是自定义类而不是CALayer类吗?