Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8310597
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T19:31:03+00:00 2026-06-08T19:31:03+00:00

Is it a good pattern to add a @protocol to a Model class and

  • 0

Is it a good pattern to add a @protocol to a Model class and implement it in the Controller?

Here is the a code which I use to send message to reload UITableView when My Model data changes, is it a good approach for object c codding?:

MyModel.h

@protocol myModelDelegate
{
(void) refreshTableView:(id) sender;
}
@end

@interface MyModel
{
@property (nonatomic,strong) (NSArray *) myData;
@property (nonatomic,weak) (id) <myModelDelegate> delegate;
}
@end

MyModel.m

@implementation MyModel

@synthesize myData=_myData;

    - (NSArray*) myData {
    if(!_myData) {
    _myData= [[NSArray alloc] init];
    }

    return _myData;
    }

 - (void) setMyData: (NSArray*) myData
    {
         if (_myData != myData) {
        _myData=myData;
    [delegate refreshTableView:self];
                           }
    }

@end

myDataController.h

...
@interface MyDataController: UITableViewController <myModelDelegate>
...

myDataController.m

@interface MyDataController()
        @property (nonatomic,strong) (MyModel *) model;
@end

@implementation MyDataController

@synthesize model=_model;

-(MyModel *) model
{
if(!_model)
  {
    _model=[[MyModel alloc]init];
     model.delegate=self;
  }
return _model;
}
    ...
        - (void) refreshTableView: (id) sender
        {
          [TableView reloadData];
        }
    ...
@end
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T19:31:05+00:00Added an answer on June 8, 2026 at 7:31 pm

    I don’t see any problem with this design.

    The only thing I would change is the signature of the delegate method into:

    -(void)modelDidChange:(MyModel*)model;
    

    This is more in line with best-practices you see around about naming of delegate methods, and also hints to a broader semantics of the method: the model will “signal’ the fact that it changed; the delegate will take an action upon that (i.e., refreshing a table if it’s a table; storing the model content, if it’s a perstistence component, etc.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to find a good pattern to use for user access validation.
I've been looking around for a good pattern to implement a insert then cancel
I would like to know if the following code would be a good pattern
is it good, that every PHP class implements a Singleton pattern? I think, it
I'm struggling to grasp why MVVM is really a good pattern to implement in
I am using the Model-View pattern on a small application I'm writing. Here's the
I recently read a post on The Anemic Domain Model Pattern which caught my
Here is a working example from Javascript - The Good Parts. function add(x, y){
as the title implies i am searching for a good pattern / schema collection
I was wondering if anyone could advise on a good pattern for loading textures

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.