Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

As far as I know, there isn't.

Do you know any?

share|improve this question

6 Answers

up vote 12 down vote accepted

Daniele Teti has a nice article about MVC in Delphi. The sample code also makes it very clear.

http://www.danieleteti.it/?cat=19

share|improve this answer
Actually it is "Passive View", Passive View has no dependencies between view and model as MVC. But this is a really good introduction, so +1 from here. – mjn May 5 '09 at 7:25
2  
Yes, that example is about "Passive View" MVP variant. I'm plan to write a 2nd article about the same subject using the Dependency Injection pattern between view and presenter. – Daniele Teti Apr 7 '10 at 17:29

Look at this implementation.

share|improve this answer
wow this seems to be a bug with SO, I can see 'look at this implementation' with implementation hyperlinked clearly in preview but apparently it dos not display it right, neways I had to translate it to english and the link is translate.google.com/translate?hl=en&sl=de&u=http://… – Srikar Doddi May 1 '09 at 0:14
Yup, seems to be a markdown bug alright. I simplified the Google Translate URL, should work now. – Mihai Limbășan May 1 '09 at 0:19

Do you really need a framework? MVC is just a pattern. You can look it up and implement it directly. I would suggest however that you implement MVP instead of MVC. MVP is a more modern variation of MVC that fits in better with environments such as Windows where the View does user input and output. (Unlike in MVC where the View only does output, and the Controller only does input.)

share|improve this answer

A little different, but you can see the a MVP implementation here:

http://jazz-sdk.googlecode.com

share|improve this answer

There is a model-gui-mediator framework available with the ti Object Persistence Framework.

MGM is similar to MVC. Graeme Geldenhuys has an article describing it at http://opensoft.homeip.net/articles/.

AFAIAA the MGM framework requires the use of tiOPF (not a bad thing, but it can make it harder to learn) but it should still demonstrate the basic concepts.

tiOPF is available at tiOPF.com. If you are interested, get the code from the repository as it is more up to date. There is a D2009 branch in the repository as well.

share|improve this answer

I know this is an old article, but here's another option: http://www.torry.net/pages.php?id=53 Look for: eMVC v.1.0

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.