我有一个像这样声明的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 !!!
为什么不更新???
答案 0 :(得分:0)
您确定在创建myLayer
实例的时候实际使用的是自定义类而不是CALayer
类吗?