0
votes
4answers
133 views
Custom init method in Objective-C, how to avoid recursion?
I want to create a subclass of UINavigationController which always starts with the same root controller. Nothing special, so (to me) it makes perfect sense to override the init method like this:
- …
3
votes
3answers
96 views
Is there any reason to choose __new__ over __init__ when defining a metaclass?
I've always set up metaclasses something like this:
class SomeMetaClass(type):
def __new__(cls, name, bases, dict):
#do stuff here
But I just came across a metaclass that was defined …
1
vote
2answers
62 views
How do I call a property setter from __init__
I have the following chunk of python code:
import hashlib
class User:
def _set_password(self, value):
self._password = hashlib.sha1(value).hexdigest()
def _get_password(self):
…
2
votes
3answers
175 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 thought __init__ …
1
vote
3answers
126 views
C# Asp.Net User Control button click
In my code I load a user control (uc) in the page_load event. The uc contains a button which sets a label text to the textbox value. (lblTest.Text = txtText.Text) . This works fine in the load event …
0
votes
3answers
150 views
What is causing “unbound method __init__() must be called with instance as first argument” from this Python code?
I have this class:
from threading import Thread
import time
class Timer(Thread):
def __init__(self, interval, function, *args, **kwargs):
Thread.__init__()
self.interval = …
0
votes
2answers
126 views
Django Admin: Getting request in ModelForm’s constructor
The below code removes certain values from a drop down menu.
It works fine but I want to remove the value if the user lacks certain permissions.
How can I access request.user in the ModelForm's …
3
votes
3answers
116 views
Difference between defining a member in __init__ to defining it in the class body in python?
What is the difference between doing
class a:
def __init__(self):
self.val=1
to doing
class a:
val=1
def __init__(self):
pass
3
votes
5answers
557 views
Why are alloc and init called separately in Objective-C?
Note: I'm relatively new to Objective-C and am coming from Java and PHP.
Could someone explain to me why I always have to first allocate and then initialize an instance?
Couldn't this be done in the …
5
votes
7answers
755 views
In Objective-C why should I check if self = [super init] is not nil?
Hey guys,
I have a general question about writing init methods in Objective-C.
I see it everywhere (Apple's code, books, open source code, etc.) that an init method should check if self = [super …
0
votes
4answers
124 views
initwithint warning, no method found?
I have a warning and just can't work out how to make it go away.
In my .h I have this...
-(void)restartTimer;
Then the in my .m I have...
-(void)restartTimer{
TimerViewController *TimerView = …
2
votes
3answers
195 views
Cleanest way to define classes in Python?
I want to define classes in Python, but I'm currently putting them in modules, contained within packages.
Is there a cleaner way of doing this? Is it okay to define classes in __init__.py of the …
1
vote
3answers
281 views
Can I you use __init__.py to define global variables?
I want to define a constant that should be available in all of the submodules of a package. I've thought that the best place would be in in the __init__.py file of the root package. But I don't know …
3
votes
4answers
216 views
How does inheriting from NSObject work?
There are a couple of things about Objective-C that are confusing to me:
Firstly, in the objective-c guide, it is very clear that each class needs to call the init method of its subclass. It's a …
1
vote
5answers
334 views
Check if a string contain Asterisk (*)
I want to check if my string contain one or more asterisk.
I have tried this :
if [[ $date_alarm =~ .*\*.* ]]
then
...
fi
It worked when I launch directly the script, but not if this script …
