iOS Translucent Beginner's Guide to Teaching You How to Make It

iOS Translucent Beginner's Guide to Teaching You How to Make It

1. Effect display

[[142842]]

This type of novice guide is quite common and is used to tell users the function of a button or remind users that they can perform some interactive operations. The guide style is to add a semi-transparent guide image to the interface, and the highlighted part is the area to be highlighted.

2. How to do it?

There are many solutions, different solutions have different advantages and disadvantages, here are two common solutions

1. Solution 1: Generate the entire guide map

(1). Export guide map

Ask the designer to export guide maps of various sizes. The guide map only contains the guide part, not the background. The exported guide map style is as follows:

[[142843]]

You need to export iPhone4, iPhone5, iPhone6, iPhone6 ​​plus, a total of 4 sizes. If you want to adapt to iPad, you also need to export iPad's

(2) Coding

Because the whole picture is exported, the code part is simple. You don’t need to consider the layout problem. Just generate an imageView and put it on it, and then add a click event to it.

The code is as follows:

  1. - ( void )addGuideView {
  2. NSString *imageName = nil;
  3. if (DEVICE_IS_IPHONE5) {
  4. imageName = @ "guide-568h" ;
  5. } else {
  6. imageName = @ "guide" ;
  7. }
  8.  
  9. UIImage *image = [UIImage imageNamed:imageName];
  10. UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
  11. imageView.frame = self.view.bounds;
  12. imageView.userInteractionEnabled = YES;
  13.  
  14. UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action: @selector (dismissGuideView)];
  15. [imageView addGestureRecognizer:tap];
  16.  
  17. [self.view addSubview:imageView];
  18. }

Special attention should be paid to the following:
@3x images require iOS 8 or higher to be automatically recognized. If you want to be forward compatible, you need to determine the device type in the image name and then specify the corresponding image name.

(3) Advantages and disadvantages

The advantages of this approach are
a. Quickly As long as the designer has finished the rendering, he can export the mask into various specifications. 90% of the workload is on the designer, and the programmer only needs to simply add views and events.

b. Low maintenance cost. When the interface changes or the guide map needs to be adjusted, the designer only needs to regenerate the image and then replace it.

But this solution also has many disadvantages:
a. Images take up a lot of space. Each device has one image, and the image is full-screen in size. It may also need to be adapted to the horizontal screen, which will obviously increase the size of the app installation package.

b. Images cannot be reused. A guide image can only be used in one place and cannot be used in other places.

2. Solution 2: Image stitching

The idea of ​​image stitching is to stitch several images together into a mask layer, and then place other elements on it, as shown in the following figure

[[142844]]

(1) Prepare the image

Here you need to prepare 3 pictures
a. Hollow ellipse mask layer

[[142845]]

The middle is transparent and the surrounding is white. The white part can be modified to any color during the masking process.

b. Small arrow

[[142846]]

c. OK button

[[142847]]

#p#

(2) Coding

Here we only introduce the writing process of some codes

a. Interface Definition of interface:

  • (void)showInView:(UIView )view maskBtn:(UIButton )btn;
    view: the parent view of the guide image
    btn: masked button

Implementation of the interface:

  1. ( void )showInView:(UIView )view maskBtn:(UIButton )btn {
  2. self.parentView = view;
  3. self.maskBtn = btn;
  4.  
  5. self.alpha = 0 ;
  6. [view addSubview:self];
  7. [UIView animateWithDuration: 0.2 animations:^{
  8.  
  9. self.alpha = 1 ;
  10. } completion:nil];
  11. }

b. Modify the mask layer. After loading the hollow ellipse image, process the white area first and change it to black and semi-transparent.
UIImage image = [UIImage imageNamed:@"whiteMask"];
image = [image maskImage:[[UIColor blackColor] colorWithAlphaComponent:0.71]];
UIImageView imageView = [[UIImageView alloc] initWithImage:image];

  1. (UIImage )maskImage:(UIColor )maskColor
  2. {
  3. CGRect rect = CGRectMake( 0 , 0 , self.size.width, self.size.height);
  4.  
  5. UIGraphicsBeginImageContext(rect.size);
  6.  
  7. CGContextRef context = UIGraphicsGetCurrentContext();
  8. CGContextTranslateCTM(context, 0 , rect.size.height);
  9. CGContextScaleCTM(context, 1.0 , - 1.0 );
  10. CGContextClipToMask(context, rect, self.CGImage);
  11. CGContextSetFillColorWithColor(context, maskColor.CGColor);
  12. CGContextFillRect(context, rect);
  13.  
  14. UIImage *smallImage = UIGraphicsGetImageFromCurrentImageContext();
  15.  
  16. UIGraphicsEndImageContext();
  17.  
  18. return smallImage;
  19. }
  • Here we will change the white part of the image to any color. We want to change the hollow ellipse image to this

    [[142848]]

    c. Generate 4 black semi-transparent views on the top, bottom, left and right sides

    Place them on the top, bottom, left, and right of the hollow oval image.

    1. (UIView *)topMaskView {
    2. if (!_topMaskView) {
    3.  
    4. UIView *view = [[UIView alloc] init];
    5. view.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent: 0.71 ];
    6. _topMaskView = view;
    7. }
    8. return _topMaskView;
    9. }
    1. (UIView *)bottomMaskView {
    2. if (!_bottomMaskView) {
    3.  
    4. UIView *view = [[UIView alloc] init];
    5. view.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent: 0.71 ];
    6. _bottomMaskView = view;
    7. }
    8. return _bottomMaskView;
    9. }
    1. (UIView *)leftMaskView {
    2. if (!_leftMaskView) {
    3.  
    4. UIView *view = [[UIView alloc] init];
    5. view.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent: 0.71 ];
    6. _leftMaskView = view;
    7. }
    8. return _leftMaskView;
    9. }
    1. (UIView *)rightMaskView {
    2. if (!_rightMaskView) {
    3.  
    4. UIView *view = [[UIView alloc] init];
    5. view.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent: 0.71 ];
    6. _rightMaskView = view;
    7. }
    8. return _rightMaskView;
    9. }

d. View layout There are several things to note here:
c-1. The x, y, width, and height values ​​of the stitched views need to be rounded, because floating point numbers may cause white edges to appear at the joints, especially on iPhone 6 plus due to the resolution of the phone, so integers are best used here.

c-2. Perform layout in the layoutSubviews function. The advantage of this layout is that it can smoothly transition between horizontal and vertical screen adaptation, and does not require manual updates.

The layout code is as follows:

  1. ( void )layoutSubviews {
  2. [ super layoutSubviews];
  3. self.frame = _parentView.bounds;
  4. _maskBg.frame = self.bounds;
  5. _btnMaskView.center = [_maskBtn.superview convertPoint:_maskBtn.center toView:_maskBtn.superview];
  6.  
  7. CGRect btnMaskRect = _btnMaskView.frame;
  8. btnMaskRect.size = CGSizeMake(floor(btnMaskRect.size.width), floor(btnMaskRect.size.height));
  9. btnMaskRect.origin = CGPointMake(floor(btnMaskRect.origin.x), floor(btnMaskRect.origin.y));
  10. _btnMaskView.frame = btnMaskRect;
  11.  
  12. _topMaskView.left = 0 ;
  13. _topMaskView.top = 0 ;
  14. _topMaskView.height = _btnMaskView.top;
  15. _topMaskView.width = self.width;
  16.  
  17. _bottomMaskView.left = 0 ;
  18. _bottomMaskView.top = _btnMaskView.bottom;
  19. _bottomMaskView.width = self.width;
  20. _bottomMaskView.height = self.height - _bottomMaskView.top;
  21.  
  22. _leftMaskView.left = 0 ;
  23. _leftMaskView.top = _btnMaskView.top;
  24. _leftMaskView.width = _btnMaskView.left;
  25. _leftMaskView.height = _btnMaskView.height;
  26.  
  27. _rightMaskView.left = _btnMaskView.right;
  28. _rightMaskView.top = _btnMaskView.top;
  29. _rightMaskView.width = self.width - _rightMaskView.left;
  30. _rightMaskView.height = _btnMaskView.height;
  31.  
  32. _arrwoView.right = _btnMaskView.left + 24 ;
  33. _arrwoView.bottom = _btnMaskView.top - 8 ;
  34. _tipsLabel.right = _arrwoView.left - 6 ;
  35. _tipsLabel.bottom = _arrwoView.top + 10 ;
  36.  
  37. _okBtn.centerX = self.width/ 2 ;
  38. _okBtn.bottom = _btnMaskView.top - 80 ;
  39. }
(3) Advantages and disadvantages

advantage:
a. To save space, you only need a few small pictures, and then you can assemble them into a guide map.

b. Reusable images. Images such as buttons, ellipses, and small arrows may be used by other guide images.

shortcoming:
a. Coding takes a long time. Every interface element needs to be implemented through coding, and every change also requires adjusting the code.

Conclusion

The first solution is more suitable for small projects, mainly because it is fast and suitable for rapid iteration. The second solution is suitable for long-term updated projects and saves app space.
Demo address:
https://github.com/sunljz/demo/tree/master/GuideDemo

【Editor's recommendation】

  1. Basic knowledge of iOS development: Core Animation
  2. Some of the best tricks for iOS development
  3. Some ingenious tricks for iOS development 2
  4. iOS development knowledge system
  5. Regarding iOS multithreading, it is enough for you to look at me

[Editor: Ni Ming TEL: (010) 68476606]

<<:  Learning Numerical Algorithms with Playground

>>:  Android Network--How I did it: Volley+OkHttp+Https

Recommend

Jiuzhaigou earthquake, brands must stop issuing blessing posters!

Yesterday (August 8) at 9:19 p.m., a magnitude 7....

2022 Mother's Day Marketing Guide

According to the annual consumer survey report re...

7 Tips to Reduce Customer Acquisition Costs for Facebook Ads

Customer acquisition requires a solid understandi...

2022 Xinwendao He Kaiwen Postgraduate English Video Course

2022 Xinwendao He Kaiwen Postgraduate English Vid...

Xiaohongshu KOL promotion: the secret of note flow limitation!

After writing "Little Red Book KOL Promotion...

The bad things in operation: a lot of nonsense and bitter tears

Compared with other positions, the job of " ...

Smart + short video, mobile marketing enters the second half

01. Traffic concentration and marketing efforts T...

What are the reasons for the poor results of Baidu’s bidding promotion?

Customers often visit the official website to inq...

Wang Zhao SEO video training tutorial, SEO novice training tutorial!

The main content of the video training tutorial r...

How to master the skills of live streaming sales!

We all know that when live streaming sells goods ...

10 tips for KOL marketing!

As a person who has been working in the market fo...