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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T19:43:09+00:00 2026-05-23T19:43:09+00:00

My method may not respond and I can’t get why in ClassA.h: @interface ClassA

  • 0

My method may not respond and I can’t get why

in ClassA.h:

@interface ClassA : NSObject {
    NSString *inStr;
    NSInteger *peak;
}
@property (retain,nonatomic)      NSString *inStr;
@end

in ClassA.m

 NSLog(@"%d peaks",peak);
                       peak++;
                       inStr = [NSString stringWithFormat:@"Peaks : %d",peak ];

                       [ClassB setUpdateLabel:inStr];

in ClassB.h

    @interface ClassB : NSObject {
            IBOutlet UILabel *peaksLabel;
            NSString *tempStr;
        }

    @property (nonatomic, retain)   UILabel             *peaksLabel;
    - (void) setUpdateLabel:(NSString*)inStr;
    @end

in ClassB.m

#import ClassB.h
@implementation classB;
-(void) setUpdateLabel:(NSString*)inStr{
    peaksLabel.text=inStr;

}

Anyone can help me ?

  • 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-23T19:43:10+00:00Added an answer on May 23, 2026 at 7:43 pm

    You are declaring - (void) setUpdateLabel:(NSString*)inStr; as a instance method, however you are using it as a class method.

    ‘-‘ indicates instance methods
    ‘+’ indicates class methods

    If you want this to work you either change the declaration to + (void) setUpdateLabel:(NSString*)inStr; or you make an object of the Class B like this:

    ClassB *obj = [[ClassB alloc] init];
    [obj setUpdateLabel:@"Something"];
    

    and remember to release it.

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

Sidebar

Related Questions

I want to call a callback method that may or may not be implemented
The following method does not compile. Visual Studio warns An out parameter may not
When i run this code the paintComponent method is not being called It may
I'm getting a warning from the compiler : warning: 'NSSortDescriptor' may not respond to
I'm getting the error 'MillersAppAppDelegate' may not respond to 'delegate'. I'm still learning all
I'm getting a warning in XCode which says NSValue may not respond to +valueWithCMTime:'
I am using Apple's MuiltipleDetailViewController sample app and get the message UIViewController may not
public class A { //some fields (may not only primitive types) and methods here}
I have several similar methods, say eg. CalculatePoint(...) and CalculateListOfPoints(...). Occasionally, they may not
What is a good method to align images together that may have different rotations,

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.