Zbar SDK is not working in iOS6

前端 未结 9 1981
伪装坚强ぢ
伪装坚强ぢ 2020-12-04 12:25

I was using ZBar for scanning in iOS5 and it was working well.

Now after updating to iOS6, its not working. It shows a following error.

    ld: fil         


        
9条回答
  •  借酒劲吻你
    2020-12-04 13:15

    In Xcode, go to the settings of your target, change 'Valid Architectures'

    from

    armv7,armv7s
    

    to

    armv7
    

    This change means your app will not take advantage of possible optimizations the new iPhone5 processor has, but you don't have to wait for 3rd party libraries to upgrade or mess with a hex editor.

提交回复
热议问题