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 8884619
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T21:06:16+00:00 2026-06-14T21:06:16+00:00

I want to draw a chart in an UIView . The question is how

  • 0

I want to draw a chart in an UIView. The question is how do I get the data (Points) to the view. If I create a protocol and set the UIViewController as the delegate where in the UIView do I call the delegate methods (initWithFrame? might be to early, and the delegate might not be set, awakeFromNib? but the view is 100% created in code, it has no nib file) ..

  • 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-14T21:06:18+00:00Added an answer on June 14, 2026 at 9:06 pm

    initWithFrame? might be to early, and the delegate might not be set.

    In fact, the delegate cannot be set by the time you’re in initWithFrame:, since the first thing you do with an object after allocation is initialization, i. e. until the init method returns, you can’t call (well, it’s idiomatic not to do so, at least) any other methods.

    What you have to do is have a loadData or reloadData method, that the delegate must call explicitly after having set itself as the delegate of your view. I. e., from the view controller, you can call it like this:

    @implementation ChartViewController
    
    - (id)init
    {
        if ((self = [super init])) {
            chartView = [[ChartView alloc] initWithFrame:self.view.frame];
            chartView.delegate = self;
            [self.view addSubview:chartView];
            [chartView reloadData];
        }
        return self;
    }
    

    Then, in your chart drawing view, implement - reloadData as follows:

    - (void)reloadData
    {
        // Call the delegate here,
        // then do the drawing
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to plot different points and show the data in a chart in
I want to draw a line chart, displaying data from a database read. I
asp.net chart always draw columns and I want to represent my data as lines.
I have large set of flow charts and workflow diagrams. I want to draw
I want to draw an area from given points on a map using the
I want to draw many geo points with Leaflet. Therefore I want to use
Hello I want to have a % in my google chart data i have
I want to create an html and javascript pie chart in my asp.net web
Im using GDI+ in C++ to draw a chart control. I want to know
I need some help. I want to create a dynamic line chart using Google's

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.