菜鸟教程小白 发表于 2022-12-12 14:47:04

c# - 如何从 UICollectionElementKindSection.Header 转换为 NSString?


                                            <p><p>我正在使用 Xamarin.iOS。如何将 <code>UICollectionElementKindSection.Header</code> 转换为 <code>NSString</code>?</p>

<blockquote>
<p>Error CS1503: Argument <code>#1&#39; cannot convert</code>UIKit.UICollectionElementKindSection&#39; expression to type `Foundation.NSString&#39; (CS1503)</p>
</blockquote>

<p>我尝试了以下方法:</p>

<pre><code>UICollectionElementKindSection.Header.ToString();
(NSString)UICollectionElementKindSection.Header;
(string)UICollectionElementKindSection.Header;
</code></pre>

<p>每次我遇到构建错误。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>为了类型安全,<code>UICollectionElementKindSectionHeader</code>(和其他值)被映射到枚举,<code>UICollectionElementKindSectionKey</code>。这使得代码完成变得更加容易(在 IDE 中)并消除了代码中潜在的拼写错误。</p>

<p>将枚举值转换为 <code>string</code>(然后是 <code>NSString</code>)是可能的 - 但这不会创建相同的 <code>NSString</code> 常量使用 ObjC 应用程序(甚至更少,因为有时,Apple 使用指针而不是字符串内容来进行常量比较)。</p>

<p>如果您需要使用不使用 <code>enum</code> 但需要该常量的 API,您可以这样做:</p>

<pre><code>IntPtr uikit = Dlfcn.dlopen (Constants.UIKitLibrary, 0);
NSString header = Dlfcn.GetStringConstant (uikit, &#34;UICollectionElementKindSectionHeader&#34;);
</code></pre>

<p>注意:如果这是 Xamarin.iOS.dll 的 API 部分,请告诉我们 <a href="http://bugzilla.xamarin.com" rel="noreferrer noopener nofollow">know</a> .我们要么公开常量,要么提供一个接受枚举的重载。</p></p>
                                   
                                                <p style="font-size: 20px;">关于c# - 如何从 UICollectionElementKindSection.Header 转换为 NSString?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/29163803/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/29163803/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: c# - 如何从 UICollectionElementKindSection.Header 转换为 NSString?