iOS source code download: Draw the input words with animation

iOS source code download: Draw the input words with animation

Functional classification: Special effects

Supported platforms: iOS

Operating environment: iOS

Development language: Object-C

Development tools: Xcode

Source code size: 174.88KB

Source code download address: http://down..com/data/1975235

Source code introduction

To implement line drawing animation for a string, you can modify the animation size and position, as well as the color of the line drawing in the class method.

Source code running screenshot

Rendering

Source code snippet

  1. -( void )startDraw:(UIButton*)sender
  2. {
  3. for (id layer in self.view.layer.sublayers) {
  4. if ([layer isKindOfClass:[ZYAnimationLayer class ]])
  5. {
  6. [layer removeFromSuperlayer];
  7. }
  8. }
  9. [ZYAnimationLayer createAnimationLayerWithString:self.myTextField.text andRect: CGRectMake(20.0f, -100.0f,
  10. CGRectGetWidth(self.view.layer.bounds) - 40.0f,
  11. CGRectGetHeight(self.view.layer.bounds) - 84.0f) andView:self.view andFont:CTFontCreateWithName(CFSTR( "Helvetica-Bold" ), 80.0f, NULL) andStrokeColor:[UIColor colorWithRed:0.3 green:0.2 blue:0.5 alpha:1]];
  12. }
  13. - ( void )textFieldDidBeginEditing:(UITextField *)textField
  14. {
  15. self.myTextField.frame = CGRectMake(self.myTextField.frame.origin.x, self.myTextField.frame.origin.y - 252, self.myTextField.frame.size.width, self.myTextField.frame.size.height);
  16. }
  17. - ( void )textFieldDidEndEditing:(UITextField *)textField
  18. {
  19. self.myTextField.frame = CGRectMake(self.myTextField.frame.origin.x, self.myTextField.frame.origin.y + 252, self.myTextField.frame.size.width, self.myTextField.frame.size.height);
  20. }

Source code download address: http://down..com/data/1975235

<<:  Novel Reading Network: How does Tingyun Server ensure the performance of a high-concurrency website with tens of millions of users?

>>:  Android source code download: Five-piece elimination game

Recommend

5 tips for running promotional events!

Usually when it comes to operational activities, ...

A guide to promoting large-scale events!

Be a long-termist and try to maximize the experie...

The first flight was successful!

At 12:12 Beijing time on July 27, 2022, the Lijia...

How is household electricity generated? Let’s start with Faraday

We cannot live without electricity every day, and...

How long can the huge profits of auto finance last?

If selling cars is not profitable, what will the ...

Tutorial on Creating a Mobile Interaction Design Checklist

For mobile applications, mobile scenarios are ver...

Does anesthesia affect the brain?

《Cotton Swab Medical Science Popularization》 Depa...

Please check! This is the digital annual report from 2021

Producer/ Ke Rongyi Xing Zhigang Coordinator/ He ...

Big news! Who is the nuclear clock that is said to have won the Nobel Prize?

Produced by: Science Popularization China Author:...

How to improve the conversion rate of the lead generation training camp?

The following is a review of a recently concluded...

Aite Tribe Story Collection (12): Habits lead to skill improvement

[51CTO.com original article] As an ordinary perso...