cannot find protocol definition for ‘TencentSessionDelegate’

iOS项目中在使用QQSDK登录时,出现警告:cannot find protocol definition for ‘TencentSessionDelegate’
这是因为TencentSessionDelegate 继承自 TencentApiInterfaceDelegate ,没有引入这个包,因此会有警告,腾讯不严谨!
其实不影响使用,但不爽,要解决这个问题,我们可以在警告的页面中引入

1
#import <TencentOpenAPI/TencentApiInterface.h>

即可解决!

Leave a Reply