Tagged Questions
0
votes
0answers
16 views
remove excess white space
I have an unfiltered string that may or may not have an excess amount of white spaces. So for example we have the following string:
NSString *testData= @"Jim Bob Marcus Trent Mark\n\n
...
-1
votes
1answer
14 views
no visible interface for NSArray declares the selector 'objectAtIndex'
Sorry about this beaten horse. But I cannot find this answer. What do do to make the following code have a visible interface?
NSValue* selCommandA = [NSValue ...
0
votes
0answers
25 views
Getting signal sigabrt exception, cant find the error
So im getting this strange sigabrt exception, I added an all exception breakpoint and the line I'm getting the exception on is this:
[self performSegueWithIdentifier: @"SolveSound" sender: self];
...
0
votes
1answer
38 views
“Unrecognized selector sent to instance” when using custom table cell
I have implemented a custom table cell and am receiveing a runtime error ("Unrecognized selector sent to instance") when the table enters cellForRowAtIndexPath. The error occur when trying to ...
-2
votes
1answer
19 views
What is the maximum number of view controllers that can be part of a UITabBarController?
Please answer this question.
I know that it is pretty trivial, but I do not possess sufficient knowledge to be able to answer it myself, that is why I am asking the readers of this question.
0
votes
0answers
26 views
How do i create a file in the default documents directory in an iOS app
I'm writing an app that needs to store some persistence information in file but i'm having trouble debugging the createFileAtPath:contents:attributes: function of NSFileManager, i have reduced the ...
0
votes
0answers
18 views
OpenSans font not working in iOS simulator
I'd like to use the OpenSans font on a UILabel, but it's not showing up in the iOS simulator. All that appears is the default system font. I have:
1) Added files to project + selected to copy to app ...
0
votes
0answers
25 views
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[Session status]
I've got a trouble with UI_USER_INTERFACE_IDIOM() here
- (void)viewDidLoad
{
[super viewDidLoad];
self.footerCommentActivity = self.commentActivity;
self.footerNewsActivity = ...
0
votes
4answers
38 views
How to create a UITableCell that has multiple subtitles
I came across this design image online and I am really puzzled on how could I make a UITableCell that has multiple subtitles and allows me to customised them in the way shown by the picture.
My ...
0
votes
0answers
21 views
iOS - New view transition not in landscape
I've a problem with a switch views transition.
I've two viewController and I use an UISwipeGestureRecognizer to change between these.
In portrait mode it works perfectly, but when I change in the ...
2
votes
2answers
56 views
NSNumber returning different value than the original int
I am quite new to objective-c and I am trying to convert an int into a NSNumber so that I can save it into Core-Data.
I've the following piece of code (index is an NSInteger)
- (void) ...
-5
votes
0answers
23 views
How convert a list of files in NSOutlineView
Suggest a way to convert a list of files to folders in NSOutlineView
Angel/Source/Video/130313/Camera_B/B239R2VU/B239C001_130313_R2VU.mov
...
0
votes
1answer
29 views
Change Bundle ID iOS
I set up my application in iTunes Connect. It has not been submitted yet (Ever). Later, I saw that my bundle identifier was not matching with the one in my Xcode project and iTunes Connect. I cannot ...
0
votes
1answer
21 views
Facebook iOS crash
I am trying to set up facebook SDK 3.5 for iOS. I have gotten it to work just fine but it is now crashing. The crash only seems to happen when a user is logged in through the default iOS facebook ...
0
votes
1answer
12 views
Overlay View using Frameworks in iOS
I have created a framework (static library) that presents an overlay view on top of the calling delegate. It does so with the following code:
[[[self delegate] view] addSubview:overlay.view];
I ...
0
votes
1answer
39 views
design & logic - Most efficient way to save reordered UITable rows
The blue Table is called Routine and the other one is called Exercise.
Routine.exercise has a Many-to-Many relationship with Exercise.routine.
I have a UITableView that the user can re-arrange the ...
0
votes
1answer
27 views
How to remove an object and all its relationships from the objects its related to in coredata
The blue Table is called Routine and the other one is called Exercise.
Routine.exercise has a Many-to-Many relationship with Exercise.routine.
I want to delete a Routine and I want all exercises ...
1
vote
3answers
41 views
Xcode build script to separate image channels?
I'm trying to figure out how to split JPEG with 4 channels(r,g,b,a) on two images - one should be JPEG with RGB information, other is PNG with only alpha channel in it.
1
vote
1answer
23 views
What is UIApplicationLinkedOnOrAfter, and why is it killing my App?
I start up my app for debugging, and as far as I can tell, it just barely gets into UIApplicationMain when I get an access error inside of UIApplicationLinkedOnOrAfter.
EXC_BAD_ACCESS (code=1, ...
0
votes
1answer
15 views
THEOS Error llvm-g++-4.2: Invalid arch name : export [closed]
I'm using iOS SDK 6.1 and am trying to make a jailbreak tweak using THEOS. I used the default tweak template (5), created the project, built it, and got an error:
collect2: ld terminated with signal ...
0
votes
1answer
21 views
How to get UITouch location from UIGestureRecognizer
I want to get the UITouch location of my tap from UIGestureRecognizer, but I can not figure out how to from looking at both the documentation and other SO questions. Can one of you guide me?
- ...
0
votes
1answer
24 views
Second toolbar like in Mail + Toolbar under a NSScrollView [duplicate]
I have searched google and SO but i can't seem to find my answer (which is strange)
How do I create a second row in a toolbar like in Xcode and Apple Mail?
Second: I really like to be able to ...
2
votes
0answers
15 views
set admob size for landscape mode in split viewcontroller
I am trying to add the Ads from google Admob, I have gone through the documentation and found that we can set the custom size for the ads banner.
I have done it in this way
int Ad_y;
int ...
0
votes
1answer
35 views
Touch Interaction in a UIScrollView
There are a few posts similar to this, but I'm having trouble adapting the other responses to my code. I am having issues with using the methods touchesBegan, touchesMoved, and touchesEnded in my ...
1
vote
1answer
63 views
Xcode/Obj-c - Segue pushes new instance
I have seen similar questions a lot on Stackoverflow and I tried a lot of things but I can't seem to figure this out. I have multiple TableViewControllers and 1 MainViewController. The ...
0
votes
1answer
47 views
iphone development: how to auto facebook login if the facebook app already logged in
In my app users can login by using facebook. I also have Facebook official app in my mobile phone and it is logged in. When I try to login from my app it asks for email and password. Is it possible to ...
-2
votes
1answer
38 views
UITableViewCell custom IBOutlet connection crashes
I made a custom view for a tablecell, i have some elements in the cell, i have coded the correct IBOutlet conenctions etc etc.
When I do not make any IBOutlet connections, I get to see the custom ...
-1
votes
0answers
17 views
Ios Camera With continuous shots as in gifboom [closed]
I am trying to click continuous images from iphone application build with av foundation as explained in
https://github.com/xamarin/monotouch-samples/tree/master/AVCaptureFrames
i had made a NStimer ...
0
votes
2answers
117 views
Global Variable returning Null
I have a program with Two windows (Both are controlled from the same Class File) and a Global Variable named PersonName1, Window A and Window B. On Window A there are 2 buttons, One which:
...
0
votes
3answers
43 views
Reload a label view text from sub class view
I have one view controller class First.h/First.m where i have a method named -(void)ChangeLabelName:(NSString *)title defined in .h file.
(in First.m)
-(void)ChangeLabelName:(NSString *)title
{
...
0
votes
1answer
73 views
Off by 20 pixels (y axis) when adding subview myNavigationController.view
I have a navigation controller with a menu button. When the menu button is pressed, the current view (complete with its navigation bar) should slide to the right, and a menu should simultaneously and ...
0
votes
2answers
46 views
Objective-c & php/mysql : login auth & requests
I'm developing an iphone app and I need to implement a 'safe' login system.
When the users writes his credentials, using a httprequest, phpmysql responds if authentification is correct or not.
But.. ...
0
votes
1answer
40 views
Obj-C: EXC_BAD_ACCESS strange error with ARC
So I have a WebView inside a custom NSObject subclass called GoogleLinkFetcher and what I do is load a request from the webview and in webView:didFinishLoadForFrame: I call self to call a method on ...
-6
votes
3answers
114 views
@synthesize statement in the new Xcode [closed]
In my Xcode project I do not need to @synthesize, in this case how can I set its value? Xcode error says that is an undeclared property.
Of course I cannot use self.someString in the setter and I do ...
1
vote
1answer
16 views
Switching between storyboards/view controllers
So I'm making an iPad app for the very first time and right now I have one view controller with its buttons displayed on the storyboard and everything and what I want to do is when I click on a ...
0
votes
0answers
8 views
[UIThreadSafeNode createPeripheral]: unrecognized selector sent to instance
I tried to search about createPeripheral and i had no luck finding any information about it. Is there anyone here who had the same crash as this?
[UIThreadSafeNode createPeripheral]: unrecognized ...
0
votes
2answers
43 views
UITextField font style not changing
I have the following problem - I want to change the UITextField font to a custom one. I am using this line of code:
textField.font = [UIFont fontWithName:@"fontname.ttf" size:20];
I want to use ...
0
votes
1answer
50 views
NSCFString objectAtIndex: unrecognized selector sent to instance Objective C [closed]
I am trying to get some json data and show it as text in a UILabel but I keep on getting a app crash with the following error -[__NSCFString objectAtIndex:]: unrecognized selector sent to instance ...
0
votes
2answers
39 views
xcode I want to change the first xib on launch
I created an IPhone app, then I had to convert it to IPad app. Now, I added a new Objective-C Class which includes XIB, .M and .H files. and I want that new XIB file to be shown on launch.
my new ...
0
votes
1answer
43 views
recieved memory warning and crash the app when capture more than 4 images?
In my app I need to upload 6 images to a server. I capture the image then upload it and then go to the next one and do the same.
When I reach the 5th image and after receiving 3 or 4 memory warning ...
0
votes
5answers
61 views
`NSUserDefaults` not saving float properly
I am building an application in which I want to save some user data by using NSUserDefaults, and it is a property of one of my controllers as following:
@property (nonatomic, strong) NSUserDefaults ...
0
votes
1answer
30 views
What NSTextFieldDelegate trully is?
The declaration of NSTextFieldDelegate really confuse me a lot.
In Xcode, I click "jump to defination" of NSTextFieldDelegate, and found:
@protocol NSTextFieldDelegate ...
0
votes
0answers
13 views
What does “Strips nonglobal symbols but saves external symbols” mean in practice?
I'm looking at an Xcode project that has set the Strip Linked Product to YES and Strip Style to Non-Global Symbols.
Apple's developer doc states that this strip style "Strips nonglobal symbols but ...
-1
votes
1answer
47 views
Loading data in second view controller in xcode NSLog [closed]
I am quite new to object C and iphone app development.
Here is what I have:
StoryBoard
What I have done
Dragged button to first view controller.
Dragged second view controller.
Added push ...
0
votes
1answer
13 views
Custom UITableViewCell limited user touch response on iPhone5 only
I have a custom UITableViewCell which contains a UIButton and the cell itself responds to UIControlEventTouchUpInside. The cell behaves as it should in the iPhone simulator and all versions of the ...
1
vote
2answers
66 views
iOS remote debugging on distributed build
When building an app through Xcode, all the UIWebViews appear as inspectable applications in Safari, but when archiving and signing for distribution, it seems that functionality is lost (probably for ...
4
votes
8answers
78 views
iOS image sizes for iPad and iPhone
I have developed an small iOS app, where i have image named bg.png which is of dimension
1024 * 768 for iPad.
Now i have many images which has been created for iPad size. Now i need to make ...
0
votes
2answers
52 views
For the first time I click on a cell, it is taking some time to load the next view controller. Why?
I'm initializing the view controller in the didSelectRowAtIndexpath method, as follows,
GuideViewController *gViewController = [[GuideViewController alloc] initWithGuideline:obj withTitle:@"" ...
1
vote
1answer
42 views
Xcode removing language specific storyboards iOS
A while ago i decided to make my application multilanguage. I ended up using localizable.strings. So a different file for each language with all the translations in it.
In my main storyboard i just ...
0
votes
1answer
20 views
Xcode iPad storyboard
So I'm looking at an iPad Objective-C Xcode project's source code and I am new to this and having trouble figuring out what's going on.
So I'm looking at the file MainStoryboard_ipad.storyboard which ...





