块编程指南使它听起来像我可以做到这一点,通过使用Block_copy / retain来复制块,但是当我尝试运行它,我崩溃我的程序。
- (voID) setupStoredBlock{ int salt = 42; m_storedBlock = ^(int incoming){ return 2 + incoming + salt; }; [m_storedBlock retain];}
我稍后再打电话
- (voID) runStoredBlock{ int outputValue = m_storedBlock(5); NSLog(@"When we ran our stored blockwe got back: %d",outputValue); [m_storedBlock release];}
任何人有任何见解? (或者,有没有东西我没有得到与块?)
非常感谢你!
解决方法 您需要改为:- (voID) setupStoredBlock{ int salt = 42; m_storedBlock = Block_copy(^(int incoming){ return 2 + incoming + salt; });}总结
以上是内存溢出为你收集整理的在Objective-C中复制块(即:将它们复制到实例变量)全部内容,希望文章能够帮你解决在Objective-C中复制块(即:将它们复制到实例变量)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)