iOS performSelector 使用 int 等基本数据类型的问题

easeapi blog at 
NSObject performSelecor 方法允许动态方法调用,它支持的参数只能是 id 类型,不能是基本数据类型。需要传递基本数据类型时,要使用 NSInvocation。……