All Questions
Tagged with mvc objective-c
10 questions
3
votes
1
answer
5k
views
Retrieving values from UITableViewCell
I have a UITableview with custom cells, every cell has a button called cellButton. When the user taps the button I present an ...
4
votes
2
answers
160
views
Custom tableview cell for displaying different foods
I have a custom tableview cell for displaying different foods, with a star next to each name. If the food has been favorited (i.e., it exists in the database), the star is filled in, otherwise it is ...
4
votes
1
answer
207
views
Model class for networking that uses notifications
I just finished a model class that represents an Instagram Networking client for my iOS app.
I am specifically looking for a review of my use of static constants. These are strings that represent ...
3
votes
2
answers
121
views
Model class representing a financial calculator
Here is my Model class's new header file:
...
5
votes
3
answers
399
views
Model class representing a calculator
I have a simple Model class that represents a calculator.
Header file:
...
4
votes
1
answer
226
views
Classes representing backend service and persisted data in iOS app
I just created 2 model class for my iOS app:
HALUserDefaults represents the persisted data in my app. It has the ability to both retrieve persisted data and store ...
5
votes
1
answer
474
views
Adding friends to address book app
I have a view controller on my app, where the user is shown a table view. The table view displays their address book contacts and allows the user to select any friends that they would like to invite ...
2
votes
1
answer
198
views
Very small start to MVC refactor in iOS app
I started to refactor my app to MVC today. I wasted a lot of time because of simple mistakes.
One was I kept trying to access the getter method inside of my custom getter method, which just causes ...
6
votes
3
answers
304
views
HTTP site scraper
A job application of mine has been declined because the test project I submitted was not coded in a clean and straightforward way.
Fine, but that's all the feedback I got. Since I like to ...
1
vote
1
answer
229
views
App for typing chemical equations to the screen
I am making an app that allows the user to type chemical equations (H2O + NaCl) to the screen. The user taps, inside a tableviewcell, a custom textfield and types on a custom keyboard (both subclasses ...