Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I have an application with multiple forms. One of the forms frmHistory can be accessed from two different forms, frmClient, frmChild by clicking on cmdHISTORY. FrmHistory has a button called cmdBACK on it. What I'm trying to do is, code the cmdBACK button so when frmHistory is accessed from frmClient, upon clicking cmdBACK it would go back to frmClient (same thing from frmChild). How would I go aobut doing it?
This may not be the best answer but it is the way I know how.
I would create a hidden control on the frmHistory, i.e. lblParent. I then assign that frmHistory.lblParent = "frmChild" or frmHistory.lblParent= "frmClient" from frmChild or frmClient. In the frmHistory you check for lblParent to know which form calls it.
I did a similar thing to what KD did.
I created a global variable called g_whichForm. Upon clicking on the HISTORY button in frmParent i made it g_whichForm="Parent" and g_whichForm ="Child" for child. So when I clicked back i check if g_whichForm = parent or child then go back to the correct form.
Thanks!
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I'm new to swift language and xcode, and I've been stuck on this problem for weeks.
How can I get user input (from a textField) and turn it into a variable that I can use in my code?
Thank you.
All you need to do is:
let userInput = textField.text
Make sure you place the code inside of the function that is called when the user is finished editing.
For example, if you have a confirm button, you would probably want to initialize this variable inside of the function that is called when the user taps the confirm button.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
In my Login screen, after the login has been accepted, a number is given to that particular user as UserNum so i can access information stored in arrays.
My question is: how can i use this variable across all of my viewControllers to display the information that i get from using my array?
One way to do this is creating a new Swift Files, and make a struct with static variables like this:
struct CommonValues {
static var UserNum: Int = 0
}
And then, you modify it in any view controller if you need it.
You maybe should save it and load it as well, I recommend UserDefaults for that.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I am new to OOP and Swift. I have some code like this:
class ViewController: UIViewController {
var topMenuScrollView: UIScrollView!
topMenu_doSomething1()
topMenu_doSomething2()
topMenu_doSomething3()
...
}
topMenu is a scrollView I have to do many things with. I found I have to write a lot of code for this top menu in this view controller file. Therefore, should I create a new class (a new swift file) specifically for the top menu handling?
However, I only have one top menu. Is it correct to write a class for it? (because I won't have multiple instances)
What's the right way to arrange this?
The purpose of object-oriented design is as much code-reuse as it is code-comprehensibility. In your case, it sounds like your menu has a lot of detailed behavior which is specific to that menu. Well, imagine at some point you want to change or rewrite the menu; it will certainly be easier if that logic is clearly isolated.
It sounds like this is a good case for another class, but it's entirely up to you.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
you are always such an incredible help to me ... but, Im really stumped here.
A basic bond/mortgage calculator that I have worked out using some online refs & a little modification.
how I can make the REPAYMENT value change automatically, as I press the UP | DOWN buttons for the Interest Rate (int_box) & the Loan (maturity_box)... So, a sort of as you change any values the REPAYMENT (answer_box) is adjusting itself.
Ideally, I want to have that each time a value is altered, it should work out the REPAYMENT VALUE ... any help, ideas or guidence greatly appreciated!
In your increase/decrease functions call giveAnAnswer() after you change the value. This will update the repayment each time the up or down buttons are pressed.
Just call giveAnAnswer() inside increaseRATE() and decreaseRATE() methods.
Using HTML events, you can do the onchange() event for when the user changes by typing. Plus, in the Javascript add a function to your buttons to recalculate the price (As mentioned by Yate).
Example onchange(): http://www.w3schools.com/tags/ev_onchange.asp
<input name="Principal" type="text" class="bondtextbox" id="principal_box" value="2550000" onchange="giveAnAnswer()" />
Edit: Made my solution clearer. And added example for Principal textfield.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I need to create a view like below in my iPhone application. And I have no clue how to do it.
Description of the view: If I press the arrow indicated button icon in the view, a new view
will appear on the same view just like a popup. This is a Facebook page. I need to simulate
the same in my iPhone application.
You may refer to below links:
http://www.youtube.com/watch?v=X2JKYDF1wbM
Part-1
http://www.youtube.com/watch?v=tJJMyzdB9uI
Part-2
http://www.youtube.com/watch?v=HqFFjmhoO1c
Cocoacontrols.com is your friend. They have several controls that do what you're looking to do. Check out http://www.cocoacontrols.com/platforms/ios/controls/jasidepanels for example.
exactly what you want...
http://www.cocoacontrols.com/platforms/ios/controls/jasidepanels
http://www.cocoacontrols.com/platforms/ios/controls/hhtablistcontroller-vertical-tab-view-controller
Happy Coding!!!!!
JTRevealSidebar use this one. I have used it. its very useful and working same as facebook app
https://github.com/mystcolor/JTRevealSidebarDemo/blob/master/JTRevealSidebarV2/JTRevealSidebarV2Delegate.h
This is not working with iOS7 Giving error "UINavigationControllers are not allowed in a navigation controller!"