ios9:架构arm64的未定义符号

时间:2017-03-24 04:07:10

标签: objective-c iphone xcode ios9.3

我创建了使用chilkat库的框架并且工作正常,然后我想将iSMP.framework添加到我的框架项目中,我只是把.framework放到项目中但它显示错误就像这样

enter image description here

有什么方法可以解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

看起来function getGroups($user_id) { $this->db->select ( '*' ); $this->db->from ( 'user' ); $this->db->join ( 'groups', 'groups.user_id = user.id'); $this->db->join ( 'shop', 'shop.group_id = groups.group_id'); $this->db->where('user.id',$user_id); $this->db->group_by(array('groups.id','shop.id')); $this->db->order_by("groups.id", "desc"); return $this->db->get()->result_array(); } 方法可能正在从外部库/框架调用方法,并且该框架未针对get_secret进行编译。因此,您必须获得为arm64编译的该框架的副本,或者更改项目的活动体系结构,以使用该库支持的体系结构编译应用程序。

相关问题