菜鸟教程小白 发表于 2022-12-13 17:24:31

objective-c - Monotouch 物镜 C 绑定(bind)


                                            <p><p>我在我们的项目中使用单声道绑定(bind)包含了一些来自“Cocoa Controls”的控件,它们都可以正常工作,除了有一个我无法工作我希望有人能发现一个明显的错误。</p>

<p>这是 Objective-C   header </p>

<pre><code>typedef enum {
kWTShort = 1,
kWTLong = 5
} WToastLength;

@interface WToast : UIView

+ (void)showWithText:(NSString *)text;
+ (void)showWithImage:(UIImage *)image;


+ (void)showWithText:(NSString *)text length:(WToastLength)length textColor:(UIColor *)    textColor backgroundColor:(UIColor *) backGroundColor;
+ (void)showWithImage:(UIImage *)image length:(WToastLength)length;



@end
</code></pre>

<p>这里是 Mono ApiDefinition</p>

<pre><code>
interface WToast
{
      
       void ShowText(String text);


   
    void ShowText(string text,ToastLenght lenght,UIColor textColor,UIColor   backgroundColor);
}
</code></pre>

<p>注意我没有包含枚举 ToastLength</p>

<p>对象实例化的任何方式,但是当我调用 ShowText 时,程序找不到选择器 </p>

<p>希望有人能帮忙</p>

<p>问候克里斯蒂安·斯托尔·安徒生</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我想我只需要暂时远离代码。</p>

<p>答案是我有点厚</p>

<p>你会注意到 objective-c函数是</p>

<pre><code>+ (void)showWithText:(NSString *)text;
</code></pre>

<p>不是</p>

<pre><code>- (void)showWithText:(NSString *)text;
</code></pre>

<p>Mono 的定义应该是</p>

<pre><code>
   void ShowText(String text);
</code></pre>

<p>不是</p>

<pre><code>
   void ShowText(String text);
</code></pre>

<p>谢谢大家</p></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - Monotouch 物镜 C 绑定(bind),我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/13081288/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/13081288/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - Monotouch 物镜 C 绑定(bind)