2
votes
2answers
56 views

Is there a way to tell what line of code generates log output without using breakpoints and stepping in Xcode (iOS)?

I have the following log outputs in Xcode: 2013-05-20 17:23:19.901 MyApp[2408:303] invalid pixel format 2013-05-20 17:23:19.901 MyApp[2408:303] invalid context The problem is I don't know what line ...
0
votes
4answers
49 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 ...
2
votes
0answers
82 views
+50

Xcode - Break on exception, but no useable symbols

I need help figuring out the magical incantation necessary to get usable information in LLDB. I have some strange behavior that I'm trying to debug, and I can reliably reproduce the issue but I don't ...
0
votes
1answer
42 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
29 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 ...
0
votes
2answers
23 views

How to check whether an Entity is related or not to another entity

I am new to Core Data I have 2 Entities Routine and Exercise that are related as Routine.exercise and Exercise.routine. User Routine has a name and so does user Exercise. I tried and also tried jsut ...
0
votes
1answer
29 views

instantiate class method issue while trying to resize and image

I am quite new to iOS development and its my first time trying to resize and image and dealing with class methods. I am following this post on how to resize an image. I placed the + ...
1
vote
1answer
39 views

Core Data and NSPredicate: Relationships

I have a basic entity that looks like the following: The entity is the basic entity in a whole tree. Every GPNode has a parent GPNode and a set of children (GPNode). Theoretically the hierarchy ...
0
votes
0answers
22 views

Is it possible to specify a linker flag so a static library is not linked?

Is it possible to specify a linker flag in OTHER_LDFLAGS so a static library is not linked?
-1
votes
2answers
65 views

Assigning UIButton to UIView in Xcode

In my project i used the below code for a purpose and it is working properly. My code: UIView *view = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:[NSString ...
0
votes
1answer
82 views

Feeling A Bad Design Layout Using Segues

So I'm on my first iPhone app. I'm actually rather far into it. I have already learned from many mistakes, but I feel I've made an ultimate mistake. I'm using segues to navigate to different views. I ...
3
votes
0answers
112 views

Xcode Organizer Console: What is House Arrest

I'm working on an iPhone app using Amazon Web Services uploading videos to S3. I can have small sized videos or large size videos. During the uploading process, sometimes it will come to a complete ...
3
votes
1answer
82 views

how to insert a Dictionary into an array

I am quite new to iOS and Objective-c. I am trying to auto generate a pList in my app that looks like this. I've so far been able to create the file making it a normal Value => Key file if i ...
1
vote
2answers
43 views

How to get all images in the project folder that start with a specific string

I am quite new in iOS development and Objective-C and I would appreciate some help. I created a Group folder in Xcode where I placed all my images. All my images are inside the project folder. I ...
0
votes
3answers
63 views

Size of default thumb image for iOS slider?

What is the exact size (width, height) of the (default) thumb image for the iOS slider? Is there perhaps some clever way to coax this out of the system (XCode, iOS)? I tried int thumbWidth = ...
0
votes
1answer
25 views

Setting the height of the UINavigationBar

I have set a UINavigationBar background image to an image with a height of 68px as opposed to the default 44px. Now the image is shown fine, but the content in the UINavigationController is overlapped ...
0
votes
2answers
48 views

Operation prohibited on supervised devices

On one of my 5th Generation iPod I am getting the "Operation prohibited on supervised devices" error message from XCode when I attach the device to my MAC. Any idea why is this error coming and how to ...
0
votes
1answer
45 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 { ...
-3
votes
0answers
52 views

XCode API for adding developer tool [closed]

Isn't there any API in XCode for adding own developer tool? For example I want to add code generator to XCode using own UIBuilder.
0
votes
1answer
65 views

iOS - MPMoviePlayerController failing to play video from remote URL

So I have a video being accessed by filepicker.io that is attempting to be played with an MPMoviePlayerController. So far I've tried everything from trying to load the video directly from the ...
-5
votes
3answers
45 views

New to iOS development. Need Resources [closed]

I just began iOS development, and find it relatively hard to comprehend. I have browsed through a lot of tutorials, and the Apple documentation too, but what i really need is tutorials that help- in ...
0
votes
1answer
31 views

Execute a piece of code in block after the block is executed

My method have a block called completionBlock. I want inside my function that calls completionBlock() to add a piece of code that's going to execute after this completionBlock has been executed. ...
1
vote
2answers
55 views

Localization for a very simple app.. How to connect a button?

I have a very simple app which only contains a PickerView, UILocalNotification, UIAlertview and less than 8 views. What I want is: I have a main view which contains two buttons one says English and ...
0
votes
3answers
57 views

Limit sliding UISlider past certain point

Let's assume a have a UISlider to which I set a certain value. The slider handle then moves to that value, as expected. Now I want to let the user slide the handle of the slider back and forth, but ...
0
votes
2answers
73 views

AFNetworking, callback when finished request?

I wonder if it's possible to get a callback when AFNetworkingfinished a request? I'm making an app in which I have a edge case, all downloaded items is checked is_deleted (and should not be displayed ...
0
votes
1answer
53 views

iphone/ios - core data relationship concept

I have a concept problem and I hope you guys can help me! On my app the user and his contacts can create events and share it. here is my app model: On App start I create my Profile (User) and fill ...
0
votes
2answers
67 views

UIImageView is shifting down when viewed on 4 inch iphone

I am trying to figure out what settings for the UIImageView below will work with all device sizes. I'm getting no luck with every combination I've tried. Here's the .xib: When I run this on a 4" ...
0
votes
1answer
61 views

Unresponsive view instantiated with instantiateViewControllerWithIdentifier:

Im having some trouble with a view that I needed instantiating from a storyboard ID. In IOS simulator, the view loads with everything in place but is completely unresponsive. The date picker doesn't ...
0
votes
2answers
19 views

Not able to access the userdata property of the sprite

In My project i am having 10 sprite,Each one having a unique userData value.During ccTouch method i am copying a sprite to New sprite, But i cant able to get the sprite userdata value. My coding is ...
1
vote
3answers
66 views

Do something when view changes

I'm developing an iOS application with a Tab View Controller and two complementary views. One of these uses CoreLocation API to get current speed and because of this, it uses a lot of battery. I know ...
0
votes
5answers
95 views

Touch detection on UILabel inside UIScrollView

I have a UIScrollView and inside this I have UILabels. I need to detect touch events for the UILabels. At the moment, it is detecting the touch inside the second label only. It ignores the first. I ...
0
votes
6answers
146 views

How can i remove array of dictionary from NSMutableDictionary?

I have Dictionary of Array (inside that, also array and dictionarry). I added UITableViewCellEditingStyleDelete in my UITableView, so I want to remove specific array of dictionary from dictionary. ...
-3
votes
2answers
38 views

How to access NSMutablearray from one class to another class in cocos2d? [closed]

In my project i need to access the NSMutablearray from one class to another class.I refered many forum but couldnt get the proper solution. Give me a exact solution for this question.
0
votes
1answer
57 views

How to access UITableView from delegate?

When I dismiss a modal, I'm overriding viewWillAppear in order to make the table view in the view reload. The problem is that I don't have any pointer to the table view to call it to refresh. I've ...
1
vote
1answer
28 views

Sound Clip used to work but not anymore! what could be wrong?

I have a sound clip that plays when ViewDidLoad and it used to work on the simulator. However, when I tried it on my device it stopped working at all!! not even the the simulator. here is my code: ...
3
votes
1answer
55 views

Showing unicode in the console in the right format

NSSet *subFolders = [_account subscribedFolders]; NSLog(@"subFolders: %@",subFolders); Output: ... "[Gmail]/\U05d8\U05d9\U05d5\U05d8\U05d5\U05ea", "[Gmail]/\U05d7\U05e9\U05d5\U05d1" ... ...
0
votes
1answer
11 views

Having Trouble Showing New Assets

So, when I was changing the assets throughout my application, for some odd reason, when I build my application some old versions of image assets are incorrectly used throughout my application. They ...
1
vote
2answers
91 views

Separate Month and year from a date array in objective C

I'm having a array of dates in this dd MMM yyyy format.Now I need to separate month and year in separate arrays from this array. Now if I select particular month and year say if I bind the year and ...
0
votes
1answer
86 views

xml parsing in iOS with too many tags with the same name

I have got the xml parsing, but a bit difficult to parse the xml below thanks for your suggestions <?xml version="1.0" encoding="UTF-8"?> <AllJobs> <Mainjobs> <job1 ...
1
vote
0answers
158 views

In-App Purchase: Purchase items on same device using multiple Apple Id

I am implementing In-App Purchase in my app and test around the existing apps to get some ideas. But I found a scenario which I am quite confused on it. I have installed an iOS app and purchased the ...
0
votes
1answer
40 views

Why am I getting a key value coding compliance error?

At runtime my app is throwing this error: Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<UIApplication 0x84231f0> setValue:forUndefinedKey:]: this class is not ...
-1
votes
1answer
52 views

Xcode Interface-builder and Memory Leaks

When we add objects like background imageViews in Interface-builder and donot make outlets, does they use any memory and leak when we release all outlets and these views were not release?
0
votes
0answers
29 views

UIsScrollview scrolling back to front side

In my app i have a created a scrollview with UIButtons inside it.While clicking each button, corresponding image is displayed on the same page.At a time we can see four buttons in that ...
0
votes
0answers
15 views

Adding Classes to Custom Framework

I'm following this tutorial and I can't figure out two things. One, the tutorial talks about changing the scope of the target membership to public, however, I don't have the "public" option in my ...
0
votes
1answer
30 views

Cocoa touch NSInteger plusing 4 not 1

I have this cocoa touch code where you press a button and a NSInteger adds its self with the number 1 and then a label turnes into the NSInteger value This is the code - (IBAction)out:(id)sender { ...
2
votes
1answer
81 views

Is there an alternative to setting UIApplication idleTimerDisabled for iOS 6.1 to simply signify that the user has actively done something?

I have an application which may, if it has the foreground, receive periodic updates from a hardware accessory. That hardware accessory has a physical hardware button on it. The user perceives this ...
0
votes
2answers
84 views

presentViewController not loading tab bar when switch views

When I switch from designworks.xib (designworks.m, designworks.h) to the MainStoryboard FirstViewController (which is a tab bar controller, first controller out of the tabs) it loads the content on ...
0
votes
1answer
80 views

presentViewController black screen or thread debug in IDE

I have seen the abundance of threads on this issue - I have tried all those solutions and they have failed. The build that ran, when I click the button it goes to the thread debugger page and I have ...
1
vote
2answers
69 views

Sorting an NSArray of Objects WRT the objects contained in NSSet in those objects

So here is the hierarchy: NSArray A contains 3 objects. Each of those custom objects contains an NSSet of another custom objects. Each of those "another custom object"s contains a number. I want ...
0
votes
1answer
41 views

Taking limited characters form paste action on UITextView

I have a UITextView, on which I restrict a user to enter more than 150 characters. I do this by implementing below method. Now, when user copy more than 150 characters and paste them in this textview, ...

1 2 3 4 5 40