<tfoot id='YFLgg'></tfoot>
    1. <small id='YFLgg'></small><noframes id='YFLgg'>

        <bdo id='YFLgg'></bdo><ul id='YFLgg'></ul>
      <i id='YFLgg'><tr id='YFLgg'><dt id='YFLgg'><q id='YFLgg'><span id='YFLgg'><b id='YFLgg'><form id='YFLgg'><ins id='YFLgg'></ins><ul id='YFLgg'></ul><sub id='YFLgg'></sub></form><legend id='YFLgg'></legend><bdo id='YFLgg'><pre id='YFLgg'><center id='YFLgg'></center></pre></bdo></b><th id='YFLgg'></th></span></q></dt></tr></i><div id='YFLgg'><tfoot id='YFLgg'></tfoot><dl id='YFLgg'><fieldset id='YFLgg'></fieldset></dl></div>

    2. <legend id='YFLgg'><style id='YFLgg'><dir id='YFLgg'><q id='YFLgg'></q></dir></style></legend>

      链接器命令因体系结构 i386 的未定义符号而失败

      时间:2023-10-23
          <tbody id='c779w'></tbody>

            <legend id='c779w'><style id='c779w'><dir id='c779w'><q id='c779w'></q></dir></style></legend>

            <small id='c779w'></small><noframes id='c779w'>

          • <tfoot id='c779w'></tfoot>
            <i id='c779w'><tr id='c779w'><dt id='c779w'><q id='c779w'><span id='c779w'><b id='c779w'><form id='c779w'><ins id='c779w'></ins><ul id='c779w'></ul><sub id='c779w'></sub></form><legend id='c779w'></legend><bdo id='c779w'><pre id='c779w'><center id='c779w'></center></pre></bdo></b><th id='c779w'></th></span></q></dt></tr></i><div id='c779w'><tfoot id='c779w'></tfoot><dl id='c779w'><fieldset id='c779w'></fieldset></dl></div>

              • <bdo id='c779w'></bdo><ul id='c779w'></ul>
                本文介绍了链接器命令因体系结构 i386 的未定义符号而失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我正在尝试做半页卷曲功能.这是我正在使用的代码:

                i am trying to do the half page curl feature. This is the code I am using:

                #import <QuartzCore/QuartzCore.h>
                
                
                CATransition *animation = [CATransition animation];
                [animation setDelegate:self];
                [animation setDuration:1.0f];
                [animation setTimingFunction:UIViewAnimationCurveEaseInOut];
                [animation setType:(notCurled ? @"mapCurl" : @"mapUnCurl")];
                [animation setRemovedOnCompletion:NO];
                [animation setFillMode: @"extended"];
                [animation setRemovedOnCompletion: NO];
                notCurled = !notCurled;
                

                但是我遇到以下错误

                Undefined symbols for architecture i386:
                  "_OBJC_CLASS_$_CATransition", referenced from:
                      objc-class-ref in MyMapViewController.o
                ld: symbol(s) not found for architecture i386
                clang: error: linker command failed with exit code 1 (use -v to see invocation)
                
                
                  "_OBJC_CLASS_$_CATransition", referenced from:
                
                
                      objc-class-ref in SJMapViewController.o
                
                
                ld: symbol(s) not found for architecture i386
                
                
                clang: error: linker command failed with exit code 1 (use -v to see invocation)
                

                我该如何解决?

                推荐答案

                您的应用程序抱怨找不到 CATransition 符号.

                your app is complaining it can not find CATransition Symbol.

                您是否将 QuartzCore 框架添加到您的应用程序中?

                Did you add the QuartzCore framework to your app?

                如果不添加:转到您的目标设置 -> 构建阶段 -> 链接二进制文件 -> 选择 + 按钮并选择 QuartzCore.

                If not add it: go to your target settings -> build phases -> link binary -> select the + button and select QuartzCore.

                然后将其导入需要使用的地方:

                then import it where you need to use it:

                      #import <QuartzCore/QuartzCore.h>
                

                这篇关于链接器命令因体系结构 i386 的未定义符号而失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:iOS - 标签或图像的动画移动 下一篇:将 UIImage 裁剪为 alpha

                相关文章

              • <small id='FGOmh'></small><noframes id='FGOmh'>

                    <tfoot id='FGOmh'></tfoot>
                    • <bdo id='FGOmh'></bdo><ul id='FGOmh'></ul>

                    <legend id='FGOmh'><style id='FGOmh'><dir id='FGOmh'><q id='FGOmh'></q></dir></style></legend>

                    <i id='FGOmh'><tr id='FGOmh'><dt id='FGOmh'><q id='FGOmh'><span id='FGOmh'><b id='FGOmh'><form id='FGOmh'><ins id='FGOmh'></ins><ul id='FGOmh'></ul><sub id='FGOmh'></sub></form><legend id='FGOmh'></legend><bdo id='FGOmh'><pre id='FGOmh'><center id='FGOmh'></center></pre></bdo></b><th id='FGOmh'></th></span></q></dt></tr></i><div id='FGOmh'><tfoot id='FGOmh'></tfoot><dl id='FGOmh'><fieldset id='FGOmh'></fieldset></dl></div>