Tagged Questions
0
votes
1answer
25 views
How to upload photo to instagram server from iOS App?
I want to upload photo from iPhone App to instagram without redirecting to the instagram app.I searched about this but i didn't get any information regarding this.I know that we can upload photo to ...
1
vote
1answer
31 views
Object sent - autorelease too many times, getting this leak for my iPhone app?
I am getting too many Object sent - autorelease too many times, this memory leak for my iPhone app and dont know how to resolve it
http://screencast.com/t/fPzMNewvq
Above is screen shot for the same.
...
-1
votes
0answers
38 views
iOS objective-C: objects composed of other objects [closed]
I'm new to mobile development, and I am having a difficult time understanding how I can create objects that contain other objects. For example, lets take the facebook app, heres a screenshot:
...
0
votes
2answers
67 views
Getting Images From Array Change Randomly
I am developing one app in that app get the images from NSArray and store it into ImageView that image view scroll the vertically and each an every page has single image.
I want to display random ...
0
votes
1answer
41 views
why is my <object>not shown on iphone?
i want to show a forreign website as in my phonegap App on iphone. I see the Website in the when i view the app in firefox but there is nothing shown on iphone. Any idea or solutions? (the url is ...
0
votes
2answers
58 views
Tab bar disappearing when switching controller
This code works perfectly to switch view controllers,except the tab bar controller disappears.
Now I try many different variations of this code
[self ...
0
votes
2answers
135 views
How can i move the image object smoothly when I am using accelerometer in iOS?
In my app I am moving the ball according to the accelerometer movements but the ball not moved smoothly .I need to move the ball smoothly on view.How can i?
I used below statements by searching on ...
0
votes
2answers
51 views
objects displaying in other cell rows
i have asked this question previous ,now more clearly i will let you know my situation of project
i added table view as sub view and table view having 4 section and section having 1,4(dynamic),3,2 ...
-2
votes
3answers
86 views
How to access the index value from NSArray
I need to access the value of an NSArray by index. The following code crashes on line 3:
livevalues=[responseString JSONValue];
NSLog(@"%d",[livevalues count]);
NSString *objectvalue = [livevalues ...
1
vote
1answer
100 views
Button add as sub view in table view showin i other cells also
i have got a problem, I have table view and in section second's row I have placed a button, when I scroll the table view this button appear in other rows too, so how should I resolve this problem?
...
0
votes
2answers
64 views
Core Data remove object functions
I have a questions relate with Core Data and the remove object functions that are created automatically when a NSManagedObject subclass is created for a certain entity.
I have to entities; one called ...
0
votes
1answer
116 views
Objective c- Is it possible to do animation without using the GPU?
Is it possible to do animations and force it to be done in the CPU instead of in the GPU?
I'll try to explain my motivation, one of my screens as a large view that do a lot of GPU work, I also ...
2
votes
2answers
78 views
Referencing programmatically made objects in other methods
I have made this ImageView (UIImageView) programmatically in the viewDidLoad method.
UIImageView *imageview = [[UIImageView alloc]initWithFrame:CGRectMake(110, 200, 100, 100)];
imageview.image = ...
0
votes
1answer
57 views
Hide TableView declared in other class
How to hide my tableView which is declared in another class..
Here is my code snippet,
CRStoreView.h
@interface CRStoreView : UIView <UITableViewDelegate, UITableViewDataSource>{
...
2
votes
2answers
75 views
How i can access Calendar Event and Schedular Event in our app? [duplicate]
Possible Duplicate:
How to add events in iPhone using Event Kit framework
Adding particular date in default calender as an event
I am making an application in which i wanna use existing ...
1
vote
0answers
103 views
Using LSO (Local Shared Objects) within iOS Development and Calling File Back Up
I am developing a app for iOS using Flash, and I've created a LSO using the following code:
var so:SharedObject = SharedObject.getLocal("name");
so.data.user = enternamehere.text;
var result:String = ...
1
vote
1answer
66 views
How do I center objects in xcode for a universal application
I have created an iPhone app that works just fine, and it launches to the iPad as well, but when everything resizes on the iPad, it sticks to the top left corner. this is an example of how i was ...
0
votes
2answers
460 views
Save image in Gallery in specific Albums in IPHONE
I want to save image in gallery in specific folder.
When i click save i am using this code to save image
- (IBAction)saveImageToGallery:(id)sender {
NSLog(@"SaveImageToGallery");
/*
...
1
vote
2answers
77 views
Searching for objects in array by name
is there a possibility to check for an object in an array by name.
At some point in my app I need to access the plist and pull information stored under an object which I found by its name.
The reason ...
0
votes
1answer
39 views
How to manage objects plans in a view iphone sdk
I'd like to know how to manage objects plans.
I explain my issue :
I have a UITextField and a Label, and I'm trying to place the label behind the TextField in the view, but anything to do, the Label ...
-2
votes
1answer
370 views
Removing last object in NSMutablearray [closed]
Is there any why to remove last object in NSMutablearray without crashing app? :D
0
votes
0answers
44 views
how to make mkmapview transparent to show location on compass image?
Please tell me, How to show user location on compass image for that how can i make transparent mapview how to get subviews of mapview to set alpha.
0
votes
3answers
112 views
How to send particular row data to previous view on select of row in current tableview?
I have a UIButton in the first view. When I click on a button I pushed a 2nd view having table view with data .i want the data of particular row selected by the user in 2nd view sent to the first ...
0
votes
1answer
60 views
Xml parser atttributes
I am working on XMLParser. I used NSLog and get a following xml string :
<table><tr><td><img ...
0
votes
1answer
120 views
iPhone Dev - Edit objects in Array from Plist
I have a Plist in which I have a number of Array's. Within these arrays are different objects that I'm reading, I've become stuck however on editing these objects in the array and then saving the ...
0
votes
3answers
128 views
moving an object within a set area in xcode
Hi there I have an object that I can move on touch but I need it to only be able to move with in a set area so from :
x 0 to 320 and
y 0 to 200
player.center = [myTouch locationInView:self.view];
...
-2
votes
2answers
124 views
How do I create multiple objects with the same Obj C code, each with a unique name?
How do I create multiple objects with the same code, but each with a unique name?
If I create an object in objective C something like:
MyClass *myObject = [[MyClass alloc] init];
I have an object ...
0
votes
0answers
128 views
Get frame of UIImageview's image covered - iOS
I have one image which has some transparent area and i wants to ignore that area.
And get that covered frame with maximum possibility..
here i have upload one image so you get idea what i am asking. ...
2
votes
2answers
395 views
Objective c - send SMS / email to one of contacts in adress book
I'm using ABPeoplePickerNavigationController to show the adress book users, and I return YEs in shouldContinueAfterSelectingPerson to see the user's phone & email.
But when I tap on the phone or ...
1
vote
1answer
109 views
How to move view up on button click [closed]
There is a button like a drop down which shows a table. The table is clearly visible if it is inside the visible area. If suppose, I have scrolled the view then the button lies at bottom . So if I ...
0
votes
4answers
347 views
How to find a particular object from an NSMutableArray iPhone app?
I have store many values in NSMutableArray like @"New", @"Old", @"Future". The NSMutablArray having 100+ objects. I need to find the @"New" objects from the array. Can anyone please help me to solve ...
1
vote
5answers
2k views
How to set array value and key in NSDictionary in iphone?
Here i am using NSMutableArray to store date, then i tried to set key and assign ArrayValue in dictionary but the app crashed, please help me
Thanks in ADvance
Here i tried the code for your ...
0
votes
1answer
62 views
Get access to created class object from another class
ViewController1.h
@interface ViewController : UIViewController
@property AVAudioPlayer *audioPlayer;
@end
ViewController1.m
@synthesize audioPlayer;
...
audioPlayer = [[AVAudioPlayer alloc] ...
0
votes
1answer
146 views
Object library changes using XCode 4 and storyboard
When working in the .h or .m of my iPhone app in XCode, the Object Library contains a lot of nice buttons and stuff, i.e. a checkbox, which I would like to add to the interface. But when I enter the ...
0
votes
1answer
177 views
iPhone App Crashes on button click
I made my project in storyboard in, due to issue with the custom UITableViewCell I have made a new project, copied all of the data to my new classes and copied my buttons, images etc from the ...
0
votes
1answer
128 views
Saving data objects between sessions (Objective-C, iPhone)
I'm putting the last bit of functionality in my application. One of the things I want to do s have the user be able to save notes. Each note has a title and a body that the user specifies. When the ...
-4
votes
1answer
106 views
Concatenate Two NSdate String values like as follows : [duplicate]
Possible Duplicate:
Concatenate Two NSDate String values
Just confused that is there any default functionality for concatenating two NSDate values like 11-jan-2012 and 15-jan-2012 as ...
0
votes
2answers
164 views
ios - iphone: How to create animation UItableviewcell when edit like native ios alarm clock app
I have make a alarm clock like default alarm clock on iphone/ipod. But I dont know How to create animation UItableviewcell when edit like native ios clock app.Please help me. thanks
Animation like ...
1
vote
2answers
2k views
How to move Object from one place to other using Animation in iphone applications [closed]
Am new to Apple ios development.I want to know what type of frameworks and libraries are used for developing the gaming applications.Mainly i want to know how to move object from one place to another ...
0
votes
1answer
123 views
Playing Audio in Locking Mode
I am working on Audio related project. I am playing audio, in both case, either my app is active or suspended. I am stuck here, when I play audio and lock my iphone, when I double click on home ...
0
votes
1answer
186 views
How should I handle incomming call in iphone/ipad
I am sure it is a duplicate question, but I didn't found any valid solution. I am using AVPlayer rather than AVAudioPlayer, and streaming audio files on iphone. When call interrupts my application ...
0
votes
2answers
318 views
Changing the Image of a UIButton at Runtime
I have UIButton instance called card. I have an object called "Representer", which has a property "image", which is a UIImage. I'm trying to change the value of the button's image at runtime. I have ...
0
votes
3answers
88 views
Return Statement Creates and Release an Object
I'm working someone else's code. I've never encountered something like this before:
return [[[NSObject alloc] init] autorelease];
Can someone tell me what this means and why someone would use it? ...
0
votes
1answer
102 views
IOS : How to Copy One User Define Model Class to Another Object of It's type
i have a problem in Coping a Object
I created a Model Class and use the Object Where i required it.
Certainly i required a copy of it for Some Reason
so i use in the following manner
Modeldata ...
0
votes
1answer
126 views
How to write code to pick the selected phone num address from phone book to send msg from my iphone application
I have implemented send sms code like this...
it's FINE but the problem is in picking the Number of the recipient .
in my code number is the value entered in a textfiled,
but i wan t to get the ...
0
votes
1answer
68 views
Save singleton object to disk - native Iphone app
I'm having some troubles trying to save a singleton object to the iPhone disk.
The object is a collection of 2 arrays, which contain the faved posts and faced jobs.
Basically --> Favorites = ...
3
votes
3answers
2k views
How to assign NSArray data to NSMutableArray in iphone?
In my application I have an NSArray which contains some data. I want to take that data and put it into an NSMutableArray called subArrayData. I am able to insert the data from my first array into the ...
2
votes
1answer
407 views
OAuth2Client #import “NXOAuth2.h” File Not Found
I'm trying to add OAuth2Client to a project. I have followed all the directions listed here, but I get NXOAuth2.h" File Not Found error when I try to import "NXOAuth2.h. The odd thing is that Xcode ...
0
votes
2answers
295 views
how to implement applicationWillTerminate in appDelegate.m
I'm trying to save some data in a class named MyPos.h which uses the NSCoding methods:
(void)encodeWithCoder:(NSCoder *)aCoder
(id)initWithCoder:(NSCoder *)aDecoder
These two methods have been ...
0
votes
3answers
451 views
How do I create new instances of an object in ios?
I'm working on a concept that will have objects falling from the top of the screen. For this example lets say, 4 objects: red square, blue square, green square, yellow square.
I have all of these ...




