Questions tagged [presentation-layer]
80 questions
0
votes
1 answer
Animate a UIImageView in the middle of an animation
I have an object that is moving right to left across the screen:
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:7.8];
[UIView setAnimationCurve:UIViewAnimationCurveLinear];
myImageview.layer.position = CGPointMake(20, …

RanLearns
- 4,086
- 5
- 44
- 81
0
votes
2 answers
MVC: calculation of UI elements in Controller or View?
I am working on an ASP.Net MVC application, and its architecture consists of the usual DAL, BL, and PL layers.
Addresses are stored as separate fields in the database, but shall be displayed in a single field in the UI.
When it comes to displaying,…

devio
- 36,858
- 7
- 80
- 143
0
votes
2 answers
MVVM Pattern Contradiction - Architectural Vs Presentation?
What is a Presentation Layer Pattern/Presentation Pattern? As far as I know MVVM is an Architectural Pattern, but I see many people, articles, blogs referring it as a Presentation Pattern. And I got confused.
It seems a bit contradictory. If it's…

atiyar
- 7,762
- 6
- 34
- 75
0
votes
1 answer
GWT or Other Presentation Layer Technologies with Spring WebFlow/MVC Framework
First off, I've never used GWT before. I have good experience in HTML/CSS/JS/JSP.
I'm looking for people's opinions on the suitability of Google Web Toolkit for a brand new web app I'm developing.
A big requirement is that the UI is attractive and…

Thomas Buckley
- 5,836
- 19
- 62
- 110
0
votes
1 answer
What WinForm Control To Bind List(Of T)?
I have been working on keeping things object oriented for my project. Currently, I'm using a .DLL which supplies all of the app's classes to the WinForms project acting as the presentation layer.
My .DLL will, for example, return a…

HardCode
- 6,497
- 4
- 31
- 54