Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

I do a custom Class ,but I can not Declaring Custom Attributes for Properties to set value into the Class

Custom Class dog.h Only had a property named" kind" @interface dog : NSObject

@property(nonatomic,strong)NSString* kind;

@end

//Declare Custom Attributes named "dg"

import "dog.h"

@interface HungAppDelegate : UIResponder <UIApplicationDelegate>

@property(strong,nonatomic) dog * dg; @end

@implementation HungAppDelegate

  • (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    self.dg.kind = @"abc"; // is this line Right ???????????

    NSLog(@"---%@----",self.dg.kind); return YES; }

@end

result is : -------NULL------

I hope it will show abc , but do not , how can I solve it ??

1 Answer

You need to alloc init your Class before you can start using it.

self.dg = [dog alloc]init];

self.dg.kind = @"abc"; 

NSLog(@"---%@----",self.dg.kind); return YES;  // this will print abc