Program 1: Write a Program to Print Student Details using Classes & Objects
Step 1: Open Xcode Tool, Click on Create a new project Step 2: Choose a template for your new Project: Select iOS
Under Application Select SingleView App click on Next Step 3: Choose options for your new project
Product Name: iOSLabex1 Organisation Name: Jain Organisation Identifier: JGI Language: Swift
Check Option Include Unit Tests
Check Option UI Tests
Click on Next
Step 4: select the path where to save your project and Click on Create Button
Step 5: Go to Main.Storyboard Drag and Drop objects from Object’s Library (5 TextField’s & 1 Button) design User
Interface, Select the Object and use Attribute, Size & Connection Inspector’s.
19BTRCE014 – Akshaya
Step 6: In ViewController.swift (Implement code as below)
import UIKit
class ViewController: UIViewController {
@IBOutlet var t1:UITextField! @IBOutlet var t2:UITextField! @IBOutlet var t3:UITextField! @IBOutlet var t4:UITextField! @IBOutlet var t5:UITextField! @IBOutlet var b1:UIButton! override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view. }
@IBAction func b1Onclick(){ print ("Student Details are
:\(t1.text!)\n\(t2.text!)\n\(t3.text!)\n\(t4.text!)\n\(t5.text!)") }}
Step 7: Give the Connections for Objects & Methods In the Keyboard Press Command-S to save the Project & Command - R to run the Program, the output is
SITE123 review 2021 SITE123 Review: Is it possible to create a website in 3 steps? Author pranav kumar SITE123 Review SITE123 Overview Pricing Pros/Cons Rating details Conclusion Example Sites Alternatives FAQ Comments SITE123 is an editor that makes creating a website feel as easy as pie. As the name suggests, you can put together a website in three steps: choose a design, add content, and go live. The designs are divided into general categories like business, online store, or portfolio. They then break down into more specific niches like law firms, hair salons or gardening. There’s no complicated setup process since you can do everything in your browser. Like many other website builders, it also comes with a blog and online store. Their pricing structure is not really obvious, unfortunately. When you go to their pricing page, you might get the impression that there is only one premium plan available. In fact, there are several plans you can choose from, but you have to create a ...
Comments
Post a Comment