Skip to content

Instantly share code, notes, and snippets.

View RajaveluC's full-sized avatar

Rajavelu Chandrasekaran RajaveluC

View GitHub Profile
@RajaveluC
RajaveluC / UserProfileService.m
Created August 21, 2013 13:24
These set of files are intended to demonstrate a typical MVC architecture and how data flows between the different layers. Code snippet for Service class goes here.
//
// ProfileService.h
// Project A
//
// Created by Company A on 7/25/13.
// Copyright (c) 2013 Company A. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "UserProfile.h"
@RajaveluC
RajaveluC / ProfileViewController.m
Last active December 21, 2015 10:49
These set of files are intended to demonstrate a typical MVC architecture and how data flows between the different layers. Code snippet for ViewController Class goes here.
//
// ProfileViewController.h
// Project A
//
// Created by Company A on 7/27/13.
// Copyright (c) 2013 Company A. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "UserProfileService.h"
@RajaveluC
RajaveluC / UserProfile.m
Last active December 21, 2015 10:48
These set of files are intended to demonstrate a typical MVC architecture and how data flows between the different layers. Code snippet for a Model Class goes here.
//
// UserProfile.m
// Project A
//
// Created by Company A on 7/26/13.
// Copyright (c) 2013 Company A. All rights reserved.
//
#import "Jastor.h"