An Objective-C keyword

learn more… | top users | synonyms

1
vote
2answers
29 views

Different usage of Objective C Properties (with/without underbar etc)

I prefer to use properties for classes in Objective-C like this (which seems standard in newer Xcode versions): /* MyClass.h */ @interface MyClass : NSObject; @property (nonatomic, strong) NSArray ...
0
votes
4answers
44 views

Synthesized NSMutableArray is returning null

So I've declared this in my appDelegate.h @property(nonatomic,strong) NSMutableArray *featured; I've synthesized it like so in my appDelegate.m @synthesize featured; When I log ...
0
votes
1answer
39 views

private property in objective c [duplicate]

I am writing class in Objective c. and I want a private property from type double in my main view controller. my code: MainViewController.m #import "MainViewController.h" @interface ...
0
votes
1answer
27 views

@synthesize the “_” notation

It's clear that the @synthesize define the setter and getter for the object. But it is unclear to me that: @synthesize managedObjectContext = _managedObjectContext; What does it mean? And why not ...
0
votes
2answers
54 views

Delegate is nil

I have a property on a ViewController which I set from a parent SplitViewController: Property declaration/synthesization @interface DownloadRecipesViewController_iPad : ...
-1
votes
3answers
51 views

Best way to declare an instance variable [closed]

I only declare a variable (i.e. NSString) as @property and @synthesize, I never declare it in the interface class, example below: .h file: @interface myViewController : UIViewController { } ...
0
votes
2answers
65 views

variable assignment and synthesizable code

Simply having a code like this : if(rising_edge(clk)) then temp(0):="001"; temp(1):="011"; temp(2):="101"; temp(3):="000"; temp(0):=temp(3)xor temp(5); end if For the example ...
0
votes
1answer
82 views

Modern Objective-C and @synthesize

I'm trying convert my code to Modern Objective-C style. How i read here http://www.techotopia.com/index.php/The_Basics_of_Modern_Objective-C": "In the case of Modern Objective-C, however, the ...
1
vote
2answers
64 views

VHDL: Latch being created when using input ports

So I'm working on synthesizing a CPU. These are the errors: WARNING:Xst:1710 - FF/Latch <EXS/mem_address_0> (without init value) has a constant value of 0 in block ...
1
vote
2answers
125 views

Proper way to use instance variables/property/synthetize with ARC [duplicate]

What is the proper way to work with instance variables (declared on interface), their @property and @synthesize, when working in ARC project? What I now do is following: SomeClass.h: @interface ...
-2
votes
1answer
68 views

Underscore before property name, in setter [duplicate]

I wrote a setter method - - (void)setMyProp:(MyProp *)myProp{ _myProp = myProp; } How is underscore put before property name is working? I know this question has been asked, but they are about ...
0
votes
2answers
30 views

_iVar and @property?

I see someone writes codes like this @interface SomeClass:<NSObject>{ NSString * _iVar; } @property(nonatomic,retain)NSString *iVar; and in implement file @synthesize iVar = ...
-1
votes
1answer
100 views

Objective-C @synthesize syntax [duplicate]

being relative new to programming iOS apps, I find it very useful to start off with some sample code. Hence, I ended up with a .m file, that starts with some lines that look like @synthesize ...
2
votes
5answers
119 views

How dangerous is it to use pointer-style assignment versus setter-methods in Objective-C?

Lets say I have a simple class like the following: @interface A { // @public int var; } // @property(some_property) int var; @end When I want to access the variable var, I have some options. ...
0
votes
1answer
58 views

Local declaration of 'photo' hides instance variable

The compiler shows me a warning as Local declaration of 'photo' hides instance variable. I don't understand what's going on. // PTKData.h @interface PTKData : NSObject { UIImage *photo; } ...
0
votes
1answer
55 views

properties synthesize and iVars

Disclaimer: I'm pretty new to Objective-C I have a couple of questions related to @property and @synthesize. Let's say I have property @property (strong, nonatomic) NSString *name; 1- I know that ...
1
vote
3answers
294 views

Compiler error “use of undeclared identifier” when I remove my @synthesize statements

With the latest LLVM build, the requirement for synthesizing properties has been removed. Therefore I was able to remove all my @synthesize statements except for the ones for ...
0
votes
2answers
124 views

self.variableName vs. _variableName vs. @sysnthesize variableName [duplicate]

Possible Duplicate: How does an underscore in front of a variable in a cocoa objective-c class work? Note: For the folks digging around trying to understand this, I figured-out the source ...
1
vote
3answers
107 views

Objective-C accessors also available without @synthesize

Consider following code: @interface TestClass () @property NSString *privateProperty; @end Now, as I learned, to make to compiler also create the accessors, I have to add the @synthesize ...
0
votes
3answers
108 views

@class @synthesize useablility

Ok, I have class, that I create for my Core Data LoginPass.h Then I have First class FirstClass.h And then I need use this classes in SecondClass, where I declare them with @class. Heder file ...
1
vote
1answer
48 views

Never-ending synthesis with integer incrementation

I have a piece of VHDL code that compile but when I try to synthesize it I get stuck, meaning the synthesization never ends and I have in the console: Analyzing Entity Interpretor in library work ...
0
votes
2answers
66 views

Why does this @synthesize implementation return an error in Objective-C?

#import "CLSViewController.h" @implementation CLSViewController @synthesize statusText = _statusText; - (void)viewDidUnload { [self setStatusText:nil]; [super viewDidUnload]; // Release ...
0
votes
2answers
299 views

iOS Setter Getter

I tried to assign a value to recordingStatus - ie recordingStatus = 1 But it doesn't go into the setter which i want some custom code.. what's wrong with my code? Thanks. Pier. In file.h ...
1
vote
2answers
145 views

@synthesize not showing up for the auto generated properties in Xcode 4.5

I am having Xcode 4.5. I have observed a very strange behavior.In previous versions of Xcode whenever I control drag the outlets from the nib to .h files, it used to generate getters and setters ...
2
votes
4answers
86 views

Property should be @synthesize with inner var or not

I'm little confuse because in some tutorials is just in h @property (readwrite,nonatomic) NSUInteger DirectProp; in m @synthesize DirectProp; But in other is like this in h @interface MyClass ...
2
votes
1answer
266 views

Xcode 4.5 still seems to be expecting @synthesize - else cannot access property

I'm using Xcode 4.5 on a brand new installation of Mountain Lion. Compiler is LLVM4.1 and my project is using ARC. (I've dabbled with Xcode in the past, but not touched it for a while). My question: ...
0
votes
2answers
208 views

Android: How to synthesize piano sounds?

I try to synthesize piano sounds using speed of playing in SoundPool. I get sounds but it sounds... so ugly. It sounds near the right sound frequency but not exactly. It sounds sometimes higher than I ...
0
votes
1answer
187 views

Why can't I access the auto-synthesized ivar?

I've been reading that with the lastest version of Xcode you don't even need to use synthesize to generate ivar, getters and setters, that Xcode itself handles this for you and creates something like ...
0
votes
1answer
145 views

What does = operator in @synthesize mean? [duplicate]

Possible Duplicate: How does an underscore in front of a variable in a cocoa objective-c class work? Underscore prefix on property name? I'm new to XCode. I see where someone has: ...
2
votes
2answers
150 views

Do I need to include @synthesize?

I created a @property by right-clicking and dragging from ViewController.xib into ViewController.h, but @synthesize is not being automatically created in ViewController.m. This post said that ...
1
vote
3answers
479 views

Why do I need to write @synthesize when I provide getter and setter?

So the auto synthesize of properties is awesome. However, when you provide both a getter and a setter, you get an error. @property (strong, nonatomic) NSArray *testArray; - (NSArray *)testArray { ...
0
votes
1answer
43 views

How do I set a nonzero initial value in iOS?

I have an ivar which is mentioned in my header @interface MyClass : UIView{ int thistone;} - (IBAction)toneButton:(UIButton *)sender; @property int thistone; @end and I have synthesized it in ...
12
votes
1answer
5k views

iOS6 automatic @property synthesize not working

After updating to the newest Version of Xcode 4.5 for iOS6 last night, i get Warnings and Errors like this Property 'mapAnnotation' requires method 'mapAnnotation' to be defined - use ...
1
vote
1answer
372 views

How to disable @synthesize in XCode 4.4

Xcode 4.4 does not need @synthesize for outlets. Yet it still generates it when I use the Referencing Outlet connector in XCode. Is there anyway to tell it not to generate the @synthesize? I looked ...
0
votes
1answer
39 views

Property Problems

I am new to objective C And i was programing on C++ and now i dont know how to use @property ... and when to use it i red a lot about that and i didnt understand and now i am trying to make a ...
3
votes
1answer
554 views

Direct access to auto-synthesized instance variables in subclasses?

For efficiency I want to access the member variable associated with a property in a subclass. If I have a property declared like: @interface Mumbo : NSObject @property (nonatomic) GLKVector3 ...
0
votes
1answer
39 views

objective-c member var and property statement usage

Recently I have started learning Objective-C, and I get puzzled about the member var and property. I want to know what's the difference between the following three code blocks: 1. @interface ...
0
votes
2answers
194 views

Objective-C Property assignment without @property

I'm currently developing an iOS application which was started by another developer. Usually, I make a property for every instance variable (assign for int, bool etc. / retain for all classes). So ...
0
votes
0answers
168 views

why can't synthesize NSObject class in a view controller (tabbed)

I already make a class (Subclass of NSObject) SPNewsGather: #import <Foundation/Foundation.h> @class SPSecondViewController; @interface SPNewsGather : NSObject { SPSecondViewController ...
4
votes
3answers
2k views

XCode 4.4 Auto @Synthesize failing on an XCode 4.3 Project

It's as simple as that. Running Lion. I just upgraded to XCode 4.4 loaded my most recent XCode 4.3 project file commented out one @synthesize line of code and errors abound. :( Verified compiler ...
0
votes
0answers
46 views

accessing class instance methods from a different class (Objective C basics)

I made a class which stores two arrays as instance variables: Chords.h @interface Chords : NSObject { chordNum[256] extension[256] } and because these are arrays, I found out I can't use a ...
0
votes
1answer
234 views

ARC forbids synthesizing a proper with unspecified ownership etc. but only for me

I'm working on an iPhone with a group of people over github. I was added to the project late and just started today. I am unable to build the project which I find extremely annoying. The reason is ...
0
votes
1answer
630 views

Clarification on Properties, “Synthesize”, and “Dynamic” in Objective-C 2.0

If I define a property in Objective-C 2.0 as follows: @property (readwrite, assign) NSObject *theObject; I have to create getter & setter methods somehow. As far as I can tell, I have three ...
0
votes
2answers
63 views

Synthesized NSNumber “out of scope”

I'm doing an iOS app that crawl my youtube subscription's videos. I have a problem when I want to navigate to see the next videos at the third time. for these, I need to collect the start-index ...
0
votes
1answer
169 views

Reload UIWebView from a popover view being displayed modally

I have a viewController called mainViewController that contains a UIWebView called "myWebView". mainViewController presents a popover viewController called subViewController. In subViewController I ...
0
votes
2answers
890 views

@property declaration without @synthesizing

I am following Big Nerd Ranch iOS Programming by Joe Conway and am kinda puzzled when I saw the following code. WebViewController.h #import <Foundation/Foundation.h> @interface ...
1
vote
0answers
625 views

Java sound frequency synthesizing

I'm trying to build a frequency generator in java, but i'm having some trouble. For some reason I'm getting exactly what I want on my headphone speaker, but when I try the same code on my macbook pro ...
1
vote
1answer
1k views

Synthesized Properties and ivar error

I've been building my program in the "Debug X86-64" mode (Xcode 3.6) and everything works flawlessly. However, I just tried switching to "Release X86-64" mode and upon compiling received the ...
3
votes
3answers
540 views

Difference beetween _ and self. in Objective-C

There is a difference beetween _ and self. in Objective-C? For example i have a property: @property (weak, nonatomic) NSString *myString; and then i synthesize this with: @synthesize myString = ...
1
vote
2answers
809 views

Trouble using 'generate' in verilog always block

I am try to generate some conditions in a case statement in Verilog. I have a parameter known as MANT_WIDTH and the number of conditions in the case statement depends on the value of MANT_WIDTH for ...

1 2