菜鸟教程小白 发表于 2022-12-13 01:23:27

ios - 修改常数值


                                            <p><div>
            <aside class="s-notice s-notice__info post-notice js-post-notice mb16"role="status">
      <div class="d-flex fd-column fw-nowrap">
            <div class="d-flex fw-nowrap">
                <div class="flex--item wmn0 fl1 lh-lg">
                  <div class="flex--item fl1 lh-lg">
                        <b>这个问题在这里已经有了答案</b>:
                        
                  <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>NSMutableString const * myMutableString = [initWithString:@&#34;Bar&#34;]
</code></pre>

<p>为此,您可以更改“myMutableString”的值,因为它指向静态位置,该位置的值可能不同但指向位置不能</p>

<p>所以,如果您有某种情况,例如应用程序基 URL,您必须定义应用程序中的每个服务调用都相同的情况,如下所示,</p>

<p>1) 最简单的方法:</p>

<pre><code>// Prefs.h
#define APP_BASE_URL @&#34;app_base_url&#34;
</code></pre>

<p>2) 更好的方法:</p>

<pre><code>// Prefs.h
extern NSString * const APP_BASE_URL;

// Prefs.m
NSString * const APP_BASE_URL = @&#34;app_base_url&#34;;
</code></pre>

<p>第二个的好处是改变常量的值不会导致整个程序的重建。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 修改常数值,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/43866806/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/43866806/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 修改常数值