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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:39:47+00:00 2026-05-26T20:39:47+00:00

Code: LotteryEntry.h #import <Foundation/Foundation.h> @interface LotteryEntry : NSObject { NSCalendarDate *entryDate; int firstNumber; int

  • 0

Code:

LotteryEntry.h

#import <Foundation/Foundation.h>

@interface LotteryEntry : NSObject
{
    NSCalendarDate *entryDate;
    int firstNumber;
    int secondNumber;
}

- (void) prepareRandomNumbers;
- (void) setEntryDate:(NSCalendarDate *)date;
- (NSCalendarDate*)entryDate;
- (int) firstNumber;
- (int) secondNumber;

@end

LotteryEntry.m

#import "LotteryEntry.h"

@implementation LotteryEntry

- (void) prepareRandomNumbers
{
    firstNumber = random() % 100 + 1;
    secondNumber = random() % 100 + 1;
}

- (void) setEntryDate:(NSCalendarDate *)date
{
    entryDate = date;
}

- (NSCalendarDate *) entryDate
{
    return entryDate;
}

- (int)firstNumber
{
    return firstNumber;
}

- (int)secondNumber
{
    return secondNumber;
}

- (NSString *)description
{
    NSString *result;
    result = [[NSString alloc] initWithFormat:@"%@ = %d and %d", 
              [entryDate descriptionWithCalendarFormat:@"%b %d %Y"],
              firstNumber, secondNumber];
}
@end

lottery.m

#import  <Foundation/Foundation.h>
#import "LotteryEntry.h";

int main (int argc, const char * argv[])
{        
    @autoreleasepool
    {      
        //create the date object
        NSCalendarDate *now = [[NSCalendarDate alloc] init];

        //see the random number generator
        srandom(time(NULL));
        NSMutableArray *array;
        array = [[NSMutableArray alloc] init];

        int i;
        for( i = 0; i < 10; i++) 
        {
            //create date time object that is i weeks from now
            NSCalendarDate *iWeeksFromNow;
            iWeeksFromNow = [now dateByAddingYears:0
                                            months:0
                                              days:(i * 7)
                                             hours:0
                                           minutes:0
                                           seconds:0];

            //create a new isntand of lottery entry
            LotteryEntry *newEntry = [[LotteryEntry alloc] init];
            [newEntry prepareRandomNumbers];
            [newEntry setEntryDate:iWeeksFromNow];

            //add the lottery entry object to the array
            [array addObject:newEntry];

            /*
            NSNumber *newNumber;
            newNumber = [[NSNumber alloc] initWithInt:(i * 3)];
            //[array addObject:newNumber];

            @try 
            {

                [array addObject:newNumber];
            } 
            @catch (NSException *exception) 
            {
                NSLog(@"catched error: %@", exception.description);
            }
             */
        }


        for (LotteryEntry *entryToPrint in array)
        {
            //display entry
            NSLog(@"%@", entryToPrint);
        }


    }
    return 0;
}

Output:

GNU gdb 6.3.50-20050815 (Apple version gdb-1708) (Mon Aug  8 20:32:45 UTC 2011)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "x86_64-apple-darwin".tty /dev/ttys000
[Switching to process 898 thread 0x0]
2011-11-08 11:16:21.193 lottery[898:707] *nil description*
2011-11-08 11:16:21.196 lottery[898:707] *nil description*
2011-11-08 11:16:21.198 lottery[898:707] *nil description*
2011-11-08 11:16:21.199 lottery[898:707] *nil description*
2011-11-08 11:16:21.200 lottery[898:707] *nil description*
2011-11-08 11:16:21.201 lottery[898:707] *nil description*
2011-11-08 11:16:21.202 lottery[898:707] *nil description*
2011-11-08 11:16:21.204 lottery[898:707] *nil description*
2011-11-08 11:16:21.205 lottery[898:707] *nil description*
2011-11-08 11:16:21.206 lottery[898:707] *nil description*
Program ended with exit code: 0           
  • 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-26T20:39:47+00:00Added an answer on May 26, 2026 at 8:39 pm

    Your -description method isn’t actually returning anything. You should be getting a compiler warning telling you this.

    It’s also leaking the string that you’re alloc/initing in that method (unless you’re running under ARC).

    Try the following instead:

    - (NSString *)description
    {
        return [NSString stringWithFormat:@"%@ = %d and %d", 
                  [entryDate descriptionWithCalendarFormat:@"%b %d %Y"],
                  firstNumber, secondNumber];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Code: public interface IFoo { void Bar(); } public class FooClass : IFoo {
Code: /* * code.c */ #include <stdio.h> void printArray(int iXArray, int iSize); int main()
Code goes first: void foo(int x) { void bar(int); //is this forward-decl legal? bar(x);
Code below does not run correctly and throws InvalidOperationExcepiton . public void Foo() {
Code: public class SMH extends Activity { public void onCreate(Bundle b) { super.onCreate(b); setContentView(R.layout.main);
Code: private final int A0 = 0; private final int A1 = 1; .....
Code snippet: for (int i = 0; i < vals.Length -1; i++) { series1.Points.Add(Convert.ToDouble(vals[i]));
I get the below error from my code: /Users/user/Dropbox/dev/bignerdranch_cocoa/lottery/LotteryEntry.m:43:16: error: receiver type 'NSCalendar' for
Code bellow is not working, any ideas why? declare @Counter int set @Counter =
Code goes first: class A { public: ... int *foo() const { return _px;

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.