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
Every great website needs a snappy, memorable domain name. Coming up with something new is a serious challenge, but once inspiration strikes, you'll need to register that name with a domain name registrar before you can use it online. Registration isn't difficult, but first you must choose from the hundreds of companies competing for your business, and there are several things for you to consider before signing the virtual dotted line. We’ve also rounded up the best web hosting services How to choose the perfect domain registrar. Pricing structures can be complicated. A low headline figure could become expensive on renewal, for instance. Prices vary between domain extensions, too, so a registrar that offers great value for a .com domain might give you a poor deal on when it comes to .org. There may be extra costs for tasks like transferring your domain to another registrar, too. Read the small print before you sign up. Look for any bundled or optional extras. A Whois ...
Comments
Post a Comment