|
Hi, I need to get some general information on private API usage (e.g. Apple80211...): Up to now I was in the opinion, that I would need a jailbroken iPhone in order to run apps using this APIs. I'm a bit buffled now, because it seems, that I can create...
Started by neil on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Additional question: Is there an up-to-date list of private APIs allowed to be used available?
Kind.
Your question isn't criminal.
Most of these will be publicly available - or at least hope so .
|
|
Hi there
I have a general question regarding UITableViews.
here is my situation.
I have a view with a couple of buttons and a UITableView, by pressing a button, the UITableView's Content should change. I use Custom Table Cells (the same cells in every...
Started by samsam on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you don't have any sort of animation when switching tables, and they're all the same size, then I'd recommend using a single view, and doing what you have to... .
I really depends on both how you're transitioning between the tableviews, and their styles .
|
|
Hi,
I have a general design question: There is a junction, with four roads connecting to it. Each road has 2 lanes. What would be the best way to design a program to handle such junction. It should allow 2 cars 2 go through the junction if they don't ...
Answer Snippets (Read the full thread at stackoverflow):
Each car that comes in enters....
What do you think about having 4 different queues for each part of the junction .
If one of the parts is locked then car should wait until it will be released .
Each car should lock parts of the lane it's going to pass trough .
|
Ask your Facebook Friends
|
Hi,
This is a quick question relating to Symfony, but could be a general MVC question.
I have a class in my model, for example, WebUser . This class has a property of email_address . This value must be unique to each WebUser .
Now, I've made it so all...
Started by Stephen Melrose on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I can't speak....
This goes for the validation of the model's attributes of course .
I can't help out with the symfony part but most MVC-Frameworks do validation in the model, since this is the only place inside a MVC environment where validation should be .
|
|
Hello,
I am having some trouble grasping the idea of a concurrent queue. I understand a queue is a FIFO, or first come first serve, data structure.
Now when we add the concurrency part, which I interpret as thread safety (please let me know if that is...
Started by clarence on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
To answer the second part of your question, the priority queue implementation you should study.
|
|
Hi all,
i'm a newbie with asp.net (worked with asp classic so far). here's my questions:
i got visual studio.net but can't install it on my win7 x64 - is there a way? do i need vs 2008? i'm looking for a good asp.net editor (which supports intellihense...
Started by Fuxi on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
What was the message....
You will need the Web Platform version.
If you haven't got access to the full version then I'd recommend getting the Express edition .
You might need Visual Studio 2008 for Windows 7 (though the 2005 version should also install) .
|
|
I used to code in javascript - jquery and PHP. I like to have a folder of, let asy 100 images, scan it and get it to screen with a fade in beetween, and delay... Much of that can be done pretty esealy
The question : only for speed purpose, i like to get...
Started by marc-andre menard on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
|
|
Hi All,
I have installed the acts_as_versioned plugin from github.com in my rails application, and there was a block of code that I don't fully understand, I was hoping someone could clear this up for me
class_eval <<-CLASS_METHODS def a_bunch_of...
Started by Chris Drappier on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It is also possible to use here documents....
From Programming Ruby :
Strings can continue across multiple input lines, in which case they will contain newline characters .
This is a "here document" , which is a way of quoting large multiline strings inline .
|
|
I have an iPhone application which has some methods to gather information from the web and which then creates an object, which holds this information as properties (lets say I'll get objects of type x). Since I might need those kind of objects from various...
Started by ff10 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
However you code example does not show anywhere that you are releasing it .
One thing that sticks out for me is that each time you call your class method you do:
ObjX *objectX = [[ObjX alloc] init];
Here you are creating a new instance of some object .
|
|
OK, after reviewing some code with PMD and FindBugs code analyzers, i was able to do great changes on the reviewed code. However, there are some things i don't know how to fix. I'll iterate them bellow, and (for better reference) i will give each question...
Started by Hypercube on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Question number 3 :
I agree with the suggestion of the software you're using on writing code that is easily readable....
Of your questions:
Question number 2 :
I think you're not capitalizing the properties properly in the method names.
|