Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
U

User 11542833

@User 11542833
About
Posts
1
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Can anyone help me solve this project?
    U User 11542833

    Declare and set a variable called myName to your name Declare two more string variables introduction and japaneseIntroduction both with an NSString type Set introduction using stringWithFormat class method "My name is %@", myName Set japanese introduction using stringByAppendingString instance method by appending " to moushimasu" Print introduction and japanese introduction Step 3: Define and call a new function Declare a function called printIntroductions The function should accept an NSString as a parameter called name Cut and paste the introduction and japaneseIntroduction code inside of the new function You should have errors for referencing 'myName'. Change any reference to 'myName' to 'name'. This is an error of scope. You only declared 'myName' in your didFinishLaunching method. Not in your new method. In your new method, you declared an argument called 'name' that your function accepts when the method is called In your didFinishLaunching method after you set myName call printIntroductions: and pass in 'myName' as an argument It should print out the introduction and Japanese introduction Step 4: Recurse through a function Add a new function called countDownTillIntroduction: that accepts an integer called numberOfDays as an argument The function should do the following: Check to see if the numberOfDays is 0 If the number of days is 0, it should print "The time has come" If numberOfDays is not 0 It should print "[numberOfDays] days left until introductions" It should declare and set a variable oneLessDay and set it to numberOfDays - 1 It should then call countDownTillIntroduction and pass in oneLessDay In the didFinishLaunching method before you call printIntroductions call countDownTillIntroduction and pass in 4 Completion: OUTPUT: You should see it print "4 days left until introductions", "3 days left until introductions" (down to 1) and then it should print "The time has come" and "My name is [yourName]", "[yourName] to moushimasu"

    Objective-C and Swift help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups