blah blah blah is here! blah blah » Close

1
votes
1 answers

What does the @synthesize marker represent in Objective-C?

Rick_A
761

What does the @synthesize accessor marker mean in objective-c? Is this for sychronization reasons?

0
votes
1 answers

Binding a control to ab object property

I know you can use ApplicationSettings to store settings for applications, but is there a way to do something more like this? I have an object: [code] public class MyObject { public bool MyBoolean; } [/code] Suppose I have ...

Feedback