0
votes
1answer
15 views
UIViewController won’t respond to presentModalViewController…
Hey.,
I've had a UITableViewController-Class. I've changed the UITableViewController Class to UIVIewController and made and specified the connections in IB new.
Everything works f …
2
votes
3answers
163 views
Confused when I see ‘self’ and ‘__init__’
I don't understand what these are used for, particularly the self argument? Could some please explain this to me and why on earth you would want to pass this in?
Also, I've always …
0
votes
1answer
53 views
self.delegate = self; what’s wrong in doing that?
Hi,
self.delegate = self; what's wrong in doing that?
and what is the correct way of doing it?
Thanks, Nir.
Code:
(UITextField*)initWith:(id)sender:(float)X:(float)Y:(float)wid …
1
vote
1answer
26 views
[TSQL] Parent-Child view from table that is self referencing (ID)? (for tsql gurus.)
I have a organization name table with the following structure given below:
CREATE TABLE [dbo].[DP_ORG_OrganizationUnit](
[GID] [uniqueidentifier] NULL,
[ID] [int] IDENTITY …
0
votes
4answers
93 views
self = Descendant in Ruby?
Hi there, I have a text log from a game with (for example) two types of entries viz. Chat and Event. For the most part they are very similar so I have a LogEntry class defined as …
0
votes
2answers
79 views
Why self::function() and $self->variable or self::$variable even though there is $this->function() and $this->variable (PHP)?
I'm confused about these two keywords and the way to use them in PHP5. I think that "this" is used for instanced objects (not static) while "self" is referring to the object itself …
0
votes
3answers
57 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
79 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 …
14
votes
6answers
784 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
564 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 …
2
votes
5answers
254 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 …
3
votes
5answers
163 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 …
0
votes
2answers
88 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 …
0
votes
2answers
45 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"] …
2
votes
6answers
256 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 …
