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

  • SEARCH
  • Home
  • 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 7159503
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T13:14:32+00:00 2026-05-28T13:14:32+00:00

I have a UIScrollView that I need to subclass and within the subclass I

  • 0

I have a UIScrollView that I need to subclass and within the subclass I need to attach the UIScrollViewDelegate so I can implement the viewForZoomingInScrollView method.

Then I have a UIViewController where I need to instantiate an object of this UIScrollView subclass that I created, and I would also like to make the UIViewController a UIScrollViewDelegate for this object so I can implement scrollViewDidZoom in this UIViewController class.

How is it possible to make one object have two delegates? (I know I could easily just have one delegate and just implement both methods there, but for design purposes I’d like to do it the way that I’m mentioning).

  • 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-05-28T13:14:33+00:00Added an answer on May 28, 2026 at 1:14 pm

    You don’t want an object with 2 delegates. You want to keep your customScrollView keep the responsibility of its own UIScrollViewDelegate functions.

    To make your parentVC respond to the delegate methods of UIScrollView as well you will have to make a custom delegate inside your customScrollView.

    At the moment a UIScrollViewDelegate function gets called you will also call one of your delegate functions from your custom delegate. This way your parentVC will respond at the moment you want it to.

    It will look somewhat like this.

    CustomScrollView.h

    @protocol CustomDelegate <NSObject>
    
    //custom delegate methods
    -(void)myCustomDelegateMethod;
    
    @end
    
    @interface CustomScrollView : UIScrollView <UIScrollViewDelegate>
    {
        id<CustomDelegate> delegate
        //the rest of the stuff
    

    CustomScrollView.m

    -(void) viewForZoomingInScrollView
    {
        [self.delegate myCustomDelegateMethod];
        //rest of viewForZoomingInScrollView code
    

    ParentVC.h

    @interface CustomScrollView : UIViewController <CustomDelegate>
    {
        //stuff
    

    ParentVC.m

    -(void)makeCustomScrollView
    {
         CustomScrollView *csv = [[CustomScrollView alloc] init];
         csv.delegate = self;
         //other stuff
    
    }
    
    -(void)myCustomDelegateMethod
    {
       //respond to viewForZoomingInScrollView
    }
    

    I hope this fully covers your problem.
    Good luck.

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

Sidebar

Related Questions

I have a UIViewController, which uses a UIScrollView and within that Scrollview it has
I have a UIScrollView that houses a gallery of images the user can scroll
I have an image in an UIScrollView, that can be scrolled and zoomed. When
I have a UIViewController, on top I put an UIImageView, then a UIScrollView. I
I have a UIViewController subclass to control a UIView that I want to add
I need to have selectable text within a UIScrollView. As I understand it, the
I have a UIScrollView decendent that implements a takeScreenshot method that looks like this:
I have a UIScrollView that shows vertical data, but where the horizontal component is
I have a UIScrollView that contains an image and a segmented control that allows
I have a UIScrollView that contains multiple UITableViews horizontally - all of which are

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.