0
votes
2answers
26 views
C# .. Asynchronous Sockets .. where is the State Object Stored?
Hi all,
A simple question really, but one where I cannot find any anwsers too.
When I execute an Asynchronous Socket operation, such as :
socket.BeginSend
(
new byte[]{6}, …
0
votes
2answers
26 views
Are multiple UIView animation callbacks a bad idea (i.e. cause mem issues)?
I have multiple UIView animations running in my app. They are very short, and then make callbacks to a method that then usually fires off another animation. This leads to a lot o …
3
votes
4answers
70 views
Why is this object being deallocated?
Hi, I'm developing an iPhone app, I'm trying to push a view into the navigation controller, which I've done many times before, however, I'm having some issues with this particular …
2
votes
1answer
25 views
Memory usage accounting in a navigation controller-based app;
I have a navigation controller-based application that could be active for a relatively long time and can load multiple screens, revisiting some in the course of its life - a busine …
0
votes
1answer
29 views
Are viewDidUnload and dealloc always called when tearing down a UIViewController?
I have a query about the use of viewDidUnload and dealloc in a simple implementation of UITableViewController.
Essentially I'd like to know more about weather or not both viewDid …
0
votes
1answer
53 views
A problem with release object
here my code
- (UIImageView *)createImageView:(NSUInteger)inImageIndex
{
UIImageView * result = [[UIImageView alloc] initWithImage:[mImages objectAtIndex:inImageIndex]];
…
1
vote
4answers
124 views
C++, Can’t use an array or vectors, how do I use a pointer to get through this mess?
I need help with pointers and memory management.
I need to store different objects, all derived from the same base class, and have been using an array to do this but it is causing …
3
votes
2answers
62 views
Why should we release?
Hi all,
I often see when we release ab object we immediately set it to nil. I know that release and nil both free the old value associated with object but in case of release it le …
0
votes
3answers
28 views
How to release or nil a type-casted object?
I am a bit confused about the objects which are initialized by type-casting. Like
UITextField *txtFld = (UITextField *)[self.view viewWithTag:someTag];
//
//
//some code here for …
0
votes
3answers
65 views
how do I tell .NET to how much memory it should use? & how much memory it should allocate for a process?
Hello,
I'm aware that .NET doesn't use complete physical memory availabe. I've encountered a System.OutOfMemoryException while the physical memory usage as only 79%. I've run my s …
0
votes
4answers
76 views
Measure a process CPU and RAM usage
Hi,
I've found various ways to track down CPU's and RAM's usage from within a process, in C#. I'd like to obtain those infos for an external program (like providing its PID).
Is t …
1
vote
1answer
30 views
Tableviecells are not getting deallocted…Memory Management issues.
hi...
I am working on an application in which uitableviewcells of uitableview are customized which contains a textfied(contains managedobject/core data), label((contains managedobj …
3
votes
7answers
93 views
Memory profiling for Java desktop application
Hi,
My application loads a data set of approx. 85bm to 100mb each time. The application's memory limit is set to 512mb, and this is, theoretically, more than enough.
However, I f …
-1
votes
1answer
34 views
game is slow first time and then becomes fast
i have new prob when i load application on device first time game is slow and second time when i start new game without closing application it is faster. now its nothing to do with …
2
votes
4answers
62 views
Suggest the best way of initialization…
Hi,
I am a bit confused in the following two ways of initialisations.....
Way 1:
- (void) myMethod{
NSArray *myArray = [[NSArray alloc] initWithObjects:obj1,obj1,nil];
…
