Tagged Questions

0
votes
3answers
37 views

Instance variable: self vs @

I saw a code class Person def initialize(age) @age = age end def age @age end def age_difference_with(other_person) (self.age - other_person.age).abs end …
0
votes
1answer
39 views

Connect from iPhone to RESTfull WCF Service with Self Signed Certificate

Hi Guys, I have an iPhone application which has to communicate with a RESTfull WCF service over a secured connection(HTTPS) with a self signed certificate. The WCF service return …
0
votes
2answers
68 views

Objective C - access BOOL ivar of void pointer to self

I have a thing that uses a SystemSoundID to play a sound, and then repeat with a C function being used as the sound completion callback, and the function is passed (void *)self (si …
3
votes
5answers
129 views

When to call self.myObject vs just calling myObject in Objective-C

This little bit of syntax has been a bit of a confusion for me in Objective-C. When should I call self.myObject vs just calling myObject. It seems redundant however they are not …
2
votes
5answers
231 views

How to call an Objective-C Method from a C Method?

I have an Obj-C object with a bunch of methods inside of it. Sometimes a method needs to call another method inside the same object. I can't seem to figure out how to get a C met …
14
votes
6answers
766 views

Advantages of prototype based OO over class based

Why is class based OO so popular instead of prototype based OO? Do they teach the latter in schools? Javascript is object based, but people use it mostly functionally, or via frame …
2
votes
6answers
471 views

Objective C : Release, Dealloc, and the Self reference.

So I thought I had all these questions all figured out. Then all of a sudden i get an error (a crash) i can't figure out. THen after doing research to remedy the crash, i notice ev …
0
votes
2answers
37 views

Is it necessary to refer to self in: yield(self[i])

In this example from a blog post, class Array def each i = 0 while(i < self.length) do yield(self[i]) i += 1 end end end my_array = ["a", "b", "c"] …
1
vote
6answers
220 views

Assigning to self in Objective-C

I'm from the C++ world so the notion of assigning this makes me shudder: this = new Object; // Gah! But in Objective-C there is a similar keyword, self, for which this is perfec …
0
votes
5answers
135 views

what is self? when should i use it?

can you explain me the self in the objective-C 2.0 ? when and where should i use? is it similar with this definition in java?
1
vote
2answers
180 views

Python decorators in classes

Hi, can one write sth like: class Test(object): def _decorator(self, foo): foo() @self._decorator def bar(self): pass This fails: self in @self is …
8
votes
5answers
617 views

Why do pythonistas call the current reference “self” and not “this”?

Python is the language I know the most, and strangely I still don't know why I'm typing "self" and not "this" like in Java or PHP. I know that Python is older than Java, but I ca …
0
votes
0answers
129 views

How do I release self (UIImageView) in touchesEnded?

I have an object that is a child of UIImageView. Before all these touches methods, I add this object to the superview and then user moves it. In touchesEnded, sometimes I want to r …
10
votes
3answers
492 views

Why is Self assignable in Delphi?

This code in a GUI application compiles and runs: procedure TForm1.Button1Click(Sender: TObject); begin Self := TForm1.Create(Owner); end; (tested with Delphi 6 and 2009) wh …
6
votes
12answers
815 views

Masters Degree with Experience. Would you hire me with a postgrad degree?

I'm looking to see how detrimental a postgrad degree can be to future career options. Sorry for the long read: I'm currently in the final year of my undergrad computer science deg …

1 2 next
15 30 50 per page