Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use the code add button in the iOS11 application view

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly introduces how to use the code add button in the iOS11 application view, which has a certain reference value, and interested friends can refer to it. I hope you can learn a lot after reading this article.

This is not covered because it is relatively easy to add views using the editing interface. Here, I will directly explain how to add it to the code. Use the code to add a button in the main view in the same way as the steps explained in Section 1.3.3. First, you need to instantiate a button object using the UIButton class, then set the position and size, and finally add the button object to the main view using the addSubview () method. (since views are all added in the same way, the use of code to add views will be omitted later. ).

[example 2-1] the following will add a button object with an orange background in the main view. The code is as follows:

Import UIKit

Class ViewController: UIViewController {

Override func viewDidLoad () {

Super.viewDidLoad ()

/ / Do any additional setup after loading the view, typically from a nib.

/ / add button object

Let button=UIButton (frame: CGRect (x: 143,241, width: 88, height: 30))

Button.backgroundColor=UIColor.orange

Self.view.addSubview (button)

}

……

}

When you run the program at this point, you will see the effect shown in figure 2.2.

Figure 2.2 Operation effect

Note: the orange area shown in figure 2.2 is actually the add button.

Thank you for reading this article carefully. I hope the article "how to use the Code add Button in the iOS11 Application View" shared by the editor will be helpful to everyone. At the same time, I also hope that you will support and follow the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report