Three20在Xcode4.5下编译错误问题

解决办法:
只需要在project > Frameworks > Three20UI.xcodeproj > Source > Additions > UIViewAdditions.h / UIViewAdditions.m 文件
打开UIViewAdditions.h 文件查找(command+F) -- #ifdef
将 #ifdef DEBUG  替换成  #ifdef DEBUG_TOUCHES

UIViewAdditions.m也一样即可解决!

 

#ifdef debug 中的是debug时才运行的语句
改为#ifdef DEBUG_TOUCHES 应该是让这些语句在debug的时候不运行

你可能感兴趣的:(XCode4)