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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T13:00:45+00:00 2026-05-26T13:00:45+00:00

I have a method which returns an NSArray with points to be plotted. Following

  • 0

I have a method which returns an NSArray with points to be plotted. Following is the code for my method.

- (NSArray *)pointsToPlot:(GraphView *)requester
{
    NSMutableArray *points = [[NSSet alloc] init];

    CGPoint midPoint;
    midPoint.x = self.graph.bounds.origin.x + self.graph.bounds.size.width / 2;
    midPoint.y = self.graph.bounds.origin.y + self.graph.bounds.size.height / 2;

    //Find points to plot
    NSValue *point1 = [NSValue valueWithCGPoint:CGPointMake(midPoint.x - 10, midPoint.y)];
    NSValue *point2 = [NSValue valueWithCGPoint:CGPointMake(midPoint.x, midPoint.y - 10)];
    NSValue *point3 = [NSValue valueWithCGPoint:CGPointMake(midPoint.x + 10, midPoint.y)];
    [points addObject:point1];
    [points addObject:point2];
    [points addObject:point3];


    [points autorelease];
    return points;
}

I am getting SIGABRT as soon as I add point1 to the points array.

Following is the stack trace obtained:

2011-10-27 10:43:36.939 Graphing Calculator[7056:207] -[__NSSet0 addObject:]: unrecognized selector sent to instance 0x4b57900
2011-10-27 10:43:36.943 Graphing Calculator[7056:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSSet0 addObject:]: unrecognized selector sent to instance 0x4b57900'
*** Call stack at first throw:
(
    0   CoreFoundation                      0x00dc95a9 __exceptionPreprocess + 185
    1   libobjc.A.dylib                     0x00f1d313 objc_exception_throw + 44
    2   CoreFoundation                      0x00dcb0bb -[NSObject(NSObject) doesNotRecognizeSelector:] + 187
    3   CoreFoundation                      0x00d3a966 ___forwarding___ + 966
    4   CoreFoundation                      0x00d3a522 _CF_forwarding_prep_0 + 50
    5   Graphing Calculator                 0x000073cd -[GraphViewController pointsToPlot:] + 1037
    6   Graphing Calculator                 0x00006895 -[GraphView drawRect:] + 965
    7   UIKit                               0x00053187 -[UIView(CALayerDelegate) drawLayer:inContext:] + 426
    8   QuartzCore                          0x016b3b5e -[CALayer drawInContext:] + 143
    9   QuartzCore                          0x016bfe47 _ZL16backing_callbackP9CGContextPv + 85
    10  QuartzCore                          0x0160d1f7 CABackingStoreUpdate + 2246
    11  QuartzCore                          0x016bfd24 -[CALayer _display] + 1085
    12  QuartzCore                          0x016b627d CALayerDisplayIfNeeded + 231
    13  QuartzCore                          0x0165b0c3 _ZN2CA7Context18commit_transactionEPNS_11TransactionE + 325
    14  QuartzCore                          0x0165c294 _ZN2CA11Transaction6commitEv + 292
    15  QuartzCore                          0x0165c46d _ZN2CA11Transaction17observer_callbackEP19__CFRunLoopObservermPv + 99
    16  CoreFoundation                      0x00daa89b __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 27
    17  CoreFoundation                      0x00d3f6e7 __CFRunLoopDoObservers + 295
    18  CoreFoundation                      0x00d081d7 __CFRunLoopRun + 1575
    19  CoreFoundation                      0x00d07840 CFRunLoopRunSpecific + 208
    20  CoreFoundation                      0x00d07761 CFRunLoopRunInMode + 97
    21  GraphicsServices                    0x010011c4 GSEventRunModal + 217
    22  GraphicsServices                    0x01001289 GSEventRun + 115
    23  UIKit                               0x00029c93 UIApplicationMain + 1160
    24  Graphing Calculator                 0x000021d9 main + 121
    25  Graphing Calculator                 0x00002155 start + 53
)
terminate called after throwing an instance of 'NSException'

Could someone please explain me what am I doing wrong here?

  • 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-26T13:00:45+00:00Added an answer on May 26, 2026 at 1:00 pm

    You are creating and initializing an NSSet and storing it to a reference for NSMutableArray.

    Change the following line:

    NSMutableArray *points = [[NSSet alloc] init];
    

    To this line:

    NSMutableArray *points = [[NSMutableArray alloc] initWithCapacity:3];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a method which returns some xml in a memory stream private MemoryStream
I have a method which returns an array of fixed type objects (let's say
I have a Java method which returns an array of doubles. I would then
I have a method which never returns a null object. I want to make
I have a JNI method to access java method which returns an Integer object.
I have a method named RenderContent which returns object[] In my unit test, I
I have a class that has an output() method which returns a matplotlib Figure
I have a method which compares two objects and returns a list of all
I have a method in .NET (C#) which returns string[][] . When using RegAsm
I have got method which is using Assembly.LoadFrom(...) statement and returns the supported cultures

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.