菜鸟教程小白 发表于 2022-12-12 15:58:24

iphone - 如何将反射添加到 UILabel。 IOS


                                            <p><p>(新手)问题在这里。搜索但在任何地方都找不到这个特定的答案....
我想为 UILabel 添加反射(如果可能,还可以发光)。我看到了苹果的反射项目代码,但它适用于 UIImage 而不是标签。 </p>

<p>只需将它添加到一个简单的时钟:</p>

<pre><code>- (void)runTimer                  //Starts a timer which messages runClock every 0.5sec
{
    myTicker = [NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(runClock)
                                              userInfo:nil repeats:YES];
}

- (void)runClock
{
    NSDateFormatter *formatter = [[ init]
                                  autorelease]; NSDate *date = ;
    // This will produce a time that looks like &#34;12:15:00 PM&#34;.
    ;

    ];   
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我写了一篇关于如何生成任何 UI 元素或元素组的反射的文章。 jar 头技术可以放入您的项目中,并且非常易于使用。源代码和文章可以在<a href="http://aptogo.co.uk/2011/08/no-fuss-reflections/" rel="noreferrer noopener nofollow">http://aptogo.co.uk/2011/08/no-fuss-reflections/</a>找到</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 如何将反射添加到 UILabel。 IOS,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/4951355/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/4951355/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 如何将反射添加到 UILabel。 IOS