Tagged Questions
This tag should be used only on questions that contain Objective-C code or are about Objective-C features. The tags "cocoa" and "cocoa-touch" should be used to ask about Apple's frameworks or classes. Use the related "ios" and "osx" for issues specific to those platforms.
0
votes
0answers
3 views
Open UIManagedDocument take too much time
Recently, I'm working with a timetable app in iOS, and i get trouble with Core Data.
My app has a main user interface kind of like the original calendar app created by Apple, and i save all my events ...
0
votes
3answers
9 views
Change textlabel in static cells in UITableView
I have a static UITableView, content of each cell I've made in storyboard, but I need to change texLabels of some cells programmatically while runtime. How can I do it?
1
vote
5answers
12 views
Convert NSDictionary value (id?) to NSString or NSNumber to compare it
pls help me with my trouble:
I can't compare to value to know successful result was or not.
I fetch json-object as NSDictionaty:
NSDictionary *returnDictionary = [NSJSONSerialization ...
0
votes
0answers
8 views
Is there any way to identify selected cell in PSTCollectionview?
Is there any way to add some color/backgrond or glow color when we select one cell in PSTCollectionview?
0
votes
1answer
18 views
Bringing subview in front of keyboard
I have a page in which I am sending a message. I have a UIView, with an UIActivityIndicatorView, which appears at the center of the screen when I click "send" and then disappears on delivery. This ...
0
votes
0answers
18 views
IBAction inside subview doesn't work < 6.0
I was developing a project only for 6.0+, but a voice from the olympus told that now it has to work on 5.0 and 5.1 too.
Testing the app, in a Controller with a MapView when i select a pin inside the ...
0
votes
0answers
10 views
Objective Zip throws “Zipexception: Error in closing '6038D836-78B7-4E3E-951B-4DB08E8BE396.caf' in the zipfile” when running on device
Code runs fine in simulator but when i run it on device it throws Zipexception: Error in closing '6038D836-78B7-4E3E-951B-4DB08E8BE396.caf' in the zipfile".
What could be the reasons of getting this ...
1
vote
1answer
9 views
Issue regarding UIScrollView as a subivew of a UIPanGesture-enabled view
Here is the scenario:
I have a scrollView as a subview of a view that has a UIPanGestureRecognizer added. The pan gesture only applies in one direction, let's say from left to right.
What I'm trying ...
0
votes
2answers
31 views
UITableView: How to load an image only once then use it in all cells
I'm creating an app using the Twitter API and parsing with JSON and every time I load the image into the cells it's taking multiple images and everything runs slowly. How would I go on by getting the ...
0
votes
1answer
17 views
Hiding A Button Based on Exact URL
I'm trying to hide a button only when a certain URL is being displayed in a UIWebView. This is the code I'm using to do so:
- (BOOL)webView:(UIWebView *)webView ...
1
vote
0answers
11 views
Ask for publish permissions directly after read permissions - Facebook SDK for iOS 6
The Facebook SDK for iOS 6 mandates that you ask for Read Permissions before Publish Permissions, and suggests strongly that you only ask for Publish Permissions in context. I, however, am not using ...
0
votes
2answers
10 views
Removing an Object from a set nullifies its inverse relationship in CoreData
I have a ObjectA which has a one-to-many relationship with ObjectB. ObjectB has an inverse one-to-one with ObjectA. It all seems to go well until I realised that calling [objectA.objectBSet ...
0
votes
0answers
14 views
Checking duplicate events does not working when start and enddate is the same
I have encountered this problem; if event's start date and end date is exactly the same following method to check event is calendar does not work and user can add multiple events with exact same ...
0
votes
2answers
58 views
Set object into C array at first available index
I have an array of box2d bodies, initialized like this:
b2Body *touchedBodies[10];
I need to populate it with several b2Bodies, and I want to set the next b2Body into the first available place -- ...
2
votes
1answer
11 views
how can i set background image(texture) for epub reader webview?
i wanna show a texture for my epub reader uiwebview.i done this before but now iam not able to re create that code again.
i know that whatever code we have to add should add it in ...
0
votes
2answers
17 views
UIImagePickerController : How do I add button and select photo
How do I add button and select photo. Please help and tell me how to solve
0
votes
0answers
60 views
Weird glitch in UITableView section header when reloading section above
Have a look at this video.
I get this glitch when running this code:
[NSFetchedResultsController deleteCacheWithName:@"Root"];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"following ...
0
votes
2answers
34 views
how to show images at cell.imageview.image from NSArray?
Image Array=[NSArray arrayWithObjects:[UIImage imageNamed:@"1 (1).gif"],
[UIImage imageNamed:@"1 (2).gif"],[UIImage imageNamed:@"1 (3).gif"],[UIImage imageNamed:@"1 (4).gif"],[UIImage ...
0
votes
1answer
21 views
Modulo of big number in Objective C
I need to calculate a modulo of a big number (a number like x*10^35) by something like 34.
I'm pretty sure that with we can't use such numbers the easy way (NSInteger). Is there a way to use ...
1
vote
1answer
38 views
Unwanted variable release (iOS)
I have UIViewController with strong DataController containing and managing a list of items (itemsList). In the initialization method of the latter, I read items from a file, get additional information ...
0
votes
0answers
23 views
How to display and play fetching image and audio form server in iphone
I am new to i phone programming.I have upload image and audio in server.After that i am fetching image and audio form server.I am getting response form server like this below in xml format.
...
0
votes
1answer
19 views
UI no response due to __psynch_mutexwait
My app sometimes becomes dead , and the call stack is like below,
I've spent two days but could not handle it yet.
What I have are contexts for each thread, and one retained context for a ...
0
votes
0answers
33 views
Conforming to a protocol on a class extension
I'm working on a Core Data application where my entities have a common property called deleted (I'm implementing logical deletion in the app).
While all the entities could inherit from a common one, ...
0
votes
0answers
17 views
Apple generates wrong qr code for passbook
I have an ipad application with ZXingWidget for decoding qr codes which generates in another iphone app. When I generates qr code via chart.googleapis.com or ZXing tool everything is ok. But when I ...
0
votes
0answers
13 views
Nested Array mapping restkit v.20
i wanna to map object in Google Places Api Photos
"photos" : [
{
"height" : 1224,
"html_attributions" : [
"\u003ca ...
0
votes
0answers
11 views
How to edit local notification between launches
Suppose i'm scheduling a local notification A, then user close the app and relaunch it.
Is it possible to greb notification A again and edit it?
I tried searching the scheduledLocalNotifications of ...
1
vote
3answers
35 views
setNeedsDisplay not calling drawRect
I am trying to create a circular progress indicator. Unfortunately, the drawRect routine is only called the first and last times from setNeedsDisplay which does not create the gradual fill pattern ...
0
votes
1answer
18 views
Prevent UISlider from firing UIControlEventValueChanged event when releasing thumb
When observing the UIControlEventValueChanged event on a UISlider, I noticed that this event is again fired when releasing the thumb. I cannot circumvent this second firing via ...
0
votes
2answers
26 views
UITextField placeholder tail truncation
*strong text*Please help truncating the placeholder of a UITextField like it does the UILabel with UILineBreakModeTailTruncation.
I would post some code, but.. there's nothing to post... I don't even ...
0
votes
2answers
35 views
JSON date to NSDate Issue
I have a date string in JSON format, it looks like this:
2013-05-22T10:54:40.437
And I'm trying to convert it to NSDate.
- (NSString *)dateFromString:(NSString *)datestring{
// Convert string to ...
1
vote
0answers
15 views
NSTokenField selection list scroll bug
While using NSTokenField something strange is happening, as shown in the images below :
As I type A, selection from popup is shown.
I scrolled it
Some more scroll, and it went below the ...
0
votes
1answer
17 views
Strange behaviour with iOS kABPersonModificationDateProperty, seems to update all the time
I'm seeing really weird behaviour in my iOS app using the ABAddressBook library. Wondering if anyone can give me some insight into whats happening in the background or if I have a logic error I just ...
0
votes
1answer
26 views
how to convert UIStoryBoard code to xib file code
I create one application that has side menu (like facebook) and this menu open fron left side.
I want create this app with xib file and I help from one project. in that project exist UIStoryBoard and ...
0
votes
2answers
23 views
NSArray Values are Display after touche in screen in Tableview
- (void)viewDidLoad {
detailView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 330, 380) style:UITableViewStylePlain];
detailView.rowHeight = 55.0f;
detailView.dataSource =self;
...
-1
votes
1answer
52 views
NSString allocation [closed]
NSString *str = [[NSString alloc]initWithString:@"ABC"];
NSLog(@"str retainCount: %d",str.retainCount);
NSString *str1 = @"ABC";
NSLog(@"str retainCount: %d",str1.retainCount);
NSString *str2 = ...
-1
votes
1answer
22 views
POSTING json with nested objects to server
This is my first native iOS app, so please bear with..
How would I construct this json data in a NSDictionary (I would guess thats how I would do it) so I cand make it part of my request body.
{
...
1
vote
2answers
41 views
How to use NSOperationQueue to download audio files from server one by one
I have an array containing audio file url's. I want to fetch audio files from server using these url's in background mode. I have heard that i can achieve this with NSOperationQueue. My query is
...
0
votes
0answers
12 views
How to insert Horizontal bar in NSCollectionView?
How to insert Horizontal bar in NScollectionview like as below
0
votes
1answer
13 views
Remove Edit Button from moreNavigationController dont work
i get some problem by removing the Edit Button from the moreNavigationController.
I cant find the mistake, it must be a simple one.
I create some TabBarViewController connect it in the IB with my ...
4
votes
2answers
63 views
Loading Adobe Illustrator(.ai) file
Is it possible to load .ai files and open them programmatically?
This is what I have tried:
- (IBAction)openDocument:(id)sender
{
QLPreviewController *previewController = [[QLPreviewController ...
-6
votes
3answers
40 views
App starting technic [closed]
I think this is a well know technic, but due to my lack of knowledge of terminology, I'm unable to find any tutorial or so.
What I want to achieve is as follows
Like in all apps, when they just ...
0
votes
2answers
21 views
app awaked (Active) by UILocalNotification
I am prompting user with a UILocalNotification. When he launch my app from notification my app becomes active if it is in background. How can i know that the app was awaked (Active) from the ...
-3
votes
0answers
28 views
How to create mac apps with stunning user interface? [closed]
I have been learning xCode and it's great but the user interface of apps created is plain (standard apple app interface). What can be done to achieve beautiful user interface. Do I need to get some ...
0
votes
0answers
27 views
Cocos 2D - CCSprite makes crash with lldb
Hi I am kind of new to cocos 2D. I Use cocos2D v 2.x and created an app from cocos2D template.
I Just added 5 CCSprite to my scene and after couple of minutes my fps gradually decreases below 10.0 ...
-2
votes
0answers
36 views
my allitem array has nil value in my ThirdViewController Class is called i wanna display in tableview in thirdViewController class [closed]
Problem adding object in array while didSelect method is called and pass it to next view controller which displays the array in a table
-(void) tableView:(UITableView *)tableView ...
0
votes
1answer
23 views
How to disable posting UIKeyboardWillShowNotification?
My custom UITextField has different inputViews. So when the inputView is an ordinary keyboard i want to show a toolbar and i use UIKeyboardWillShowNotification. But when its inputView is say ...
0
votes
0answers
11 views
YouTube API with iOS signing in and retrieving list of videos
I've created a couple of textfields for entering a username and password as a lock, but I want to log into an existing account - my YouTube account - through the app, and then retrieve the list of my ...
-2
votes
1answer
79 views
Objective-C - Accessing property from different class
So in my VC1.h I got:
@property (weak, nonatomic) IBOutlet UIButton *monthly;
This is connected to a button on a view which is connected to the VC1 class.
How do I access this button's .enabled ...
0
votes
1answer
25 views
Sending image to SOAP webservice
I am trying to send some texts and an image. I can send everything except the image. The problem is I dont know how to pass it.
in .net soap webservice, image is declared as base64binary. what is the ...
-1
votes
0answers
28 views
CRASHING issue on getting data from Database
This is my function to get data from database . and some time it crashes with
EXC_BAD_ACCESS
and i am not getting what exactly is happening please help me
mostly it crashes when it geting ...








