0
votes
0answers
10 views
Annotated pins are not getting loaded during reloading of map
I have used apple maps in my application for implementing maps.I used the following code for that.
My problem is that,It is showing the pins only when it is loading for the first time.
I have ...
0
votes
1answer
32 views
Undefined symbols for architecture i386: “_OBJC_IVAR_$_UIViewController._view”, referenced from:
I've been looking through countless posts about this error:
Undefined symbols for architecture i386:
"_OBJC_IVAR_$_UIViewController._view", referenced from:
-[ViewController viewDidLoad] in ...
2
votes
5answers
36 views
right align self.navigationItem setTitleView
I need to align the navigationItem TitleView to the far right. (where the navigationItem rightBarButtonItem normally appears)
How can this be done ?
I have tried this but with no luck it still ...
0
votes
0answers
25 views
iOS instance variable gets “NULLED” for unknown reason
I have an instance variable that looks like this:
@property (strong, nonatomic) Post *post;
I set it in a custom init method like this:
- (id)initWithPageType:(int)pageType andPost:(Post *)post
{
...
-5
votes
3answers
31 views
Submit to app store as lite version and full version [closed]
I'm having two separate apps like "Lite version" and "Full version", with two different provisioning. I want to submit these two apps in apple store. How to do that ?
Please anyone help to do it.
0
votes
1answer
8 views
IOS IN-APP purchase , product ID auto generating
is there any way to do auto generation of product ID in IN app purchase . in my applications user can upload images, videos, audios files and they can sell and purchase (multiple items). in this case ...
3
votes
2answers
55 views
Objective-C @property variables for an object of class
In my code i declare an @property for my Main class in my sub class to set values there
@property(nonatomic,retain) MainViewController *father;
but i noticed that retain make the dealloc method ...
0
votes
0answers
42 views
text alignment drawInRect Not Working
I have the following code which draw text in a UITableViewCell, it's working fine for drawing and return the text but in the Center of UITableViewCell. So I gave it Right Alignment but not working!!
...
0
votes
0answers
22 views
High number of xcodebuild processes get created when I click RUN
XCODE version: 4.6.2
This is what happens when I click on RUN.
Message: "Running 1 of 1 custom shell scripts" and the progress bar just halts.
Then just creates a lot of xcodebuild processes(I can ...
0
votes
6answers
51 views
iOS finding string within a string
Hello everyone I am trying find a string inside a string
lets say I have a string:
word1/word2/word3
I want to find the word from the end of the string to the last "/"
so what I will get from ...
-5
votes
2answers
46 views
Jbson in iOS 6.0 later [closed]
I'm using Xcode 4.6 and iOS 6.1. I need import the JBSon library to my project to make a JSON parser.
How do I do this?
0
votes
1answer
47 views
NSLog not working when I make a method call in objective c
I'm working on my first ground-up iOS app. I'm sure I'm doing something wrong here, but I can't seem to ferret out the problem.
I have an app with some IBActions in it, which do two things:
1) ...
-2
votes
0answers
44 views
How to print returned value of Method using fast enumeration
I'm learning Objective-C using the Big Nerd Ranch Objective C book and I'm having some issues with the Chapter 17 challenge.
I am required to create a class called StockHolding which is a subclass ...
0
votes
0answers
7 views
Xcode subproject framework dependency build fail
I have one Xcode iOS project (I'll call it the super project) which contains another Xcode iOS project as a subproject. The subproject is an iOS static library. I have done everything described at ...
-1
votes
1answer
31 views
trying to add number to number allready saved on label
So I have a TextField integer that needs to be added to a label.
For example when I type 20, it appears in the label and when I save it and come back it's still there, so far so good right, i got ...