(新手)问题在这里。搜索但无法在任何地方找到这个具体的答案.... 我想在UILabel中添加一个反射(如果可能的话,还有一个发光)。我看到了apple的反射项目代码,但它适用于UIImage而不是标签。
只需将其添加到一个简单的时钟:
- (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 = [[[NSDateFormatter alloc] init]
autorelease]; NSDate *date = [NSDate date];
// This will produce a time that looks like "12:15:00 PM".
[formatter setTimeStyle:NSDateFormatterMediumStyle];
[clockLabel setText:[formatter stringFromDate:date]];
}
答案 0 :(得分:3)
我写了一篇关于如何生成任何UI元素或元素组的反射的文章。罐装技术可以放入您的项目中,并且非常易于使用。可以在http://aptogo.co.uk/2011/08/no-fuss-reflections/
找到源代码和文章答案 1 :(得分:1)
我认为正确的方法是继承UILabel并使用quartz2d覆盖drawRect方法
这里你和quartz2d可以更好地相互了解。 here's where you and quartz2d can get to know each other a little better.