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.

learn more… | top users | synonyms (2)

0
votes
0answers
40 views

Rate the app functionality in ios not working well

I am having an app in which I have a button to "Rate" the app. On click of the button, I am using the following code. - (IBAction)ratePressed:(id)sender { NSString *str = ...
0
votes
0answers
8 views

Drag XBPageDragView from top left to bottom right

I am using XBPageCurl library. I want to drag view from top left to bottom right corner. The sample code for XBPageDragView curls the page from bottom right. Any idea how to do it.
-1
votes
0answers
28 views

WebSocket server implementation on iOS

I want to implement a WebSocket server on iOS and the client side on the browser. I found this library for server side implementation in objective c. I'm having trouble building the project and need ...
2
votes
3answers
67 views

Async image loading from url inside a UITableView cell - image changes to wrong image while scrolling

I've written two ways to async load pictures inside my UITableView cell. In both cases the image will load fine but when I'll scroll the table the images will change a few times until the scroll will ...
1
vote
1answer
42 views

Issues in using custom keyboard in ios

I have downloaded a sample project from this link for using custom keyboard. It works perfectly. But, when I used that in my project it returns an error - -[UIView playKeyboardClick]: unrecognized ...
0
votes
1answer
47 views

objective-c json serialization

I need to create a POST request and in it's body I need to put a JSON. The template for the JSON file is as follows: {"key" : [{...}, {...}, {...} ..... ]} What I've tried doing is something like ...
2
votes
1answer
34 views

Managing the memory for an object passed in to an in-out argument

I wonder how memory management must be done for method parameters that are used to pass values into the method and (optionally) return updated values from the method. For example, the ...
2
votes
1answer
32 views

Why does respondsToSelector: exist?

Why do we have to manually check this every time we try to send a message to an object that might not respond to the message/selector? Why can't the language do the check for us every time a message ...
0
votes
1answer
23 views

iOS - Check if file exists Dropbox Sync API iOS SDK

I'm new to iOS development, and working on an app that support Dropbox sync for text files. Having followed tutorial on Dropbox site but I'm not be able to check if a file is exist. As implemented: ...
1
vote
1answer
31 views

Does this type casting assign the address or the data?

cell is of type UITableViewCell* LocationCell *locationCell = (LocationCell *)cell; Is this assigning the address of cell to locationCell and preserving the same instance of the object? Would it be ...
0
votes
1answer
34 views

Objective-C count for array that was/is a sub array fails?

NSLog(@"Size of array: %i", ([HistoricDatesArray [23] count])); HistoricDatesArray [23] = HistoricDatesArray [23][1]; NSLog(@"Size of array: %i", ([HistoricDatesArray [23] count])); As soon as the ...
2
votes
2answers
92 views

Update views while being touched

I am having an app where I load images in a UITableView. Each row has an image view. I download images from URL and assign it to UIImageView. The problem here is that the image views are not ...
1
vote
6answers
88 views

Index of a character from the NSString in iOS

I have an NSString for example "This is my question".I want to find all the indices of the character/substring "i" ie In this case If index starts from 0,then I want 2,5,16 as my answer.
0
votes
1answer
48 views

Deleting core data element at specific position.

Im new to xcode and iphone application so please bare with me. Im trying to delete the selected core data element in my table view when the "edit" then the "delete" button is pressed. I can't seem ...
0
votes
1answer
38 views

Creating a Button to Make Buttons

I have a setup to create a UI Button when another button is clicked. Everything seemed straightforward at first, until I decided to create my own UI Button class. Most of it works, except for the fact ...
0
votes
0answers
23 views

NSMenu Not connecting method of another class

-(void)rightMouseDown:(NSEvent *)theEvent { cvcont = [[CollectionViweItemSubClass alloc] init ]; NSMenu * m = [[NSMenu alloc] init]; //[cvcont openInFinder];----perfectly ...
0
votes
2answers
41 views

UISlider value is zero when trying to pass value to UIView with custom class

I have a UIView, UILabel, and UISlider placed in my UIVeiwController in my ViewController files. I have also programmatically added a UILabel to the UIView as a debugging tool. Yes, I could connect ...
-4
votes
1answer
39 views

Objective-C: How to monitor user actions such as load view, click button automatically? [closed]

Is there any way to monitor user activity such as view loaded, button clicked or gestures... automatically?
-1
votes
2answers
56 views

Difference between @property and variable within interface declaration [duplicate]

What's the difference between putting a variable inside of the @interface{} declaration in a header file, and putting in a @property after that declaration? E.g., @interface GameCenterManager : ...
0
votes
0answers
18 views

SenTestCase linker error iOS

I'm trying to write test cases for my iOS app. However, there seems to be some problem regarding SenTesting framework. I'm getting the following error: Undefined symbols for architecture i386: ...
1
vote
2answers
34 views

ScrollView Prevents labels from working

I have a DetailViewController that was working fine. It has labels and a textView. I added a scrollView to allow the textView to move up when it was selected, but after I put the scrollView under the ...
0
votes
0answers
4 views

TPKeyboardAvoiding issue

I'm using the TPKeyboardAvoiding project and in doing so have an issue with the size of the scroll view. The scrolling works great but for some reason it's not using the full screen, despite being ...
1
vote
1answer
39 views

string of the @exp@ in breakpoint Log Message has only one first symbol

I need to trace my program. I made symbolic breakpoint: Full string is: "Class name is @*(char*)object_getClassName(*(long*)($esp+4))@" But instead full class name I have only first one symbol ...
0
votes
1answer
60 views

Moving a UIWebView on iOS

I'm working on an iOS application and I'm having trouble with the navigation. I'm new to xCode and my assumption is that most dynamic content will be handled through WebViews. My plan is to have 4 ...
0
votes
0answers
30 views

Implementing read/write characteristic in the CoreBluetooth.framework

I am working on the corebluetooth framework currently I have created the peripheral with the writable and readable characteristic . Its working fine for me . But I want to create read- write ...
0
votes
1answer
21 views

Do all UIVIewControllers come with a UINavigationController, UISearchDisplayController, etc? [closed]

I just noticed that UIViewController have properties like self.navigationController self.searchDisplayController etc. Which confused me a bit. I did not define these in my xib file - but I notice I ...
0
votes
0answers
15 views

How to merge row of selected column like excel sheet in cocoa

I am trying to implement similar functionality(merging rows and highlight it by color) of microsoft excel sheet. is there any methods, api or any sample code for such type of functionality.
0
votes
1answer
14 views

Using UIControlEventTouchDragEnter to trigger a button's method… but doesn't work?

I am trying to set up a button using UIControlEventTouchDragEnter as the way to trigger the button's method. Specifically, I have a button, and I want the button's method to be triggered if the user ...
0
votes
3answers
40 views

get property from id class

ABC *abc=[ABC new]; id property=abc.property; but: id ClassName=NSClassFromString(ABC); id instance=[ClassName new]; id property=???????; i can't use instance.property,because it is id type. i ...
0
votes
1answer
60 views

can't make tab bar hidden when using container views

My app uses view controllers each containing 2 container views as intermediaries between a tab bar controller and navigation controllers. This is for the purpose of managing a menu that is embedded in ...
0
votes
4answers
56 views

ios how to hide one uiview and push another uiview at the same position

I want to set myview hidden and view visible, how can I do this. This is the code I got so far but it makes everything hidden. CGRect frame = CGRectMake(185, 960, 768, 1004); HiUIView *view = ...
2
votes
0answers
44 views

How to create a CATransform3D matching another made using setValue:forKey:

I tried to create a CATransform3D, but got it wrong. The following code does what I do want, using key-values: [_transitionLayer setValue:[NSNumber numberWithFloat:metrics.translationPointsX] ...
1
vote
0answers
44 views

Web Server Response Has Extra White Space [closed]

I keep getting this extra white space in my NSLog when I try to login, and I don't know why. Any thoughts on what is causing this? 2013-05-20 21:24:46.094 ServerTest[2485:11303] Yes Here's ...
0
votes
2answers
35 views

setting property in dispatch_async but property is NULL after block finishes

I am using the following code to change a property called topPlaces inside a view controller. The line [FlickrFetcher topPlaces] returns an NSArray and my property topPlaces is, of course, also an ...
0
votes
1answer
24 views

How do I load a CSV in IOS after saving it locally

I have a CSV file that I'm downloading from an S3 account and I would like to show it in my ios app by using the Quicklook framework. The error I'm getting is in my console. It says ...
1
vote
1answer
16 views

Why would subclassing NSFormatter prevent me from editing NSTextField's input?

I'm trying to format two NSTextFields for SMPTE time codes, which have the format: HH:MM:SS:FF. However, when the user switches the SMPTE code to drop-frame, the delimiter between SS and FF needs to ...
-1
votes
2answers
52 views

NSDate doesn't refresh [closed]

The NSDate in my first view Controller wont refresh until I go to another view controller and then come back to it. Any idea why that would be? viewDidLoad: NSTimer *timer = [NSTimer ...
0
votes
2answers
43 views

Objective C Converting float to integer produces strange results [closed]

I have float which has value 30 which I get from core data. When I print the value using NSLog I get 30. NSLog(@"The value of float temp is %@", [self.detailItem valueForKey:@"credit"]); When I ...
2
votes
2answers
51 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
2answers
43 views

Unable to calculate the sum of prime numbers below 2 million

I'm doing the Euler's Method project to find the sum of prime numbers below 2 million and I'm struggling. Here is the code I'm using. When I calculate the sum below 10 and the sum below 50 I'm getting ...
2
votes
2answers
67 views

Mixing C with Objective C

I'm a little confused as to whats going on in this snippet of example code. I am creating a property called 'processingGraph' of C struct 'AUGraph'. I then pass this struct to the Objective C method ...
0
votes
1answer
18 views

What is the equivalent to [NSPatternColor CGColor] in OS X 10.7?

I have the following code that works fine in OS X 10.8: [viewLayer setBackgroundColor:[NSColor colorWithPatternImage:[NSImage imageNamed:@"editbackground.png"]].CGColor]; But when I used it on OS X ...
0
votes
1answer
42 views

does have objective-c have generic types (and with constraints) similar to c#?

Example Generic Repository: public interface IGenericRepository<T> where T : class { IQueryable<T> GetAll(); IQueryable<T> FindBy(Expression<Func<T, bool>> ...
0
votes
1answer
27 views

Objective-C (IOS 6.1+): Draw Text in a shape or path

I was wondering if there is an "easy" way to draw text in a shape or a view or a path so that the characters wrap if the text line is too long (even with fonts with different sizes). Below just an ...
1
vote
0answers
51 views

In iOS, why do subviews wrap around to the other side when the superview is resized?

Subviews that have their left side on the x-axis of their superview move to the other side of the superview when the superview is resized. Is there any logical explanation for this? This is happening ...
1
vote
2answers
64 views

parse multilined json in objective c

I have a json file with large data like this: [{"pkg_id": 385 ,"pkg_name":" 10OZ NR 1/24 "}, {"pkg_id": 822 ,"pkg_name":" 12OZ CN "}, {"pkg_id": 422 ,"pkg_name":" 12OZ CN 6/4 ...
0
votes
1answer
38 views

How do I add a UIViewController?

I have a GLES game, it has no standard UI elements. It is based on the code from GLSprite which contains a UIView and an AppDelegate (full source code on github ...
0
votes
1answer
19 views

How do I keep MDScrollView from truncating my row headers and making my cells look bad?

Here's a screenshot to show what I am describing: And the relevant code: - (NSInteger)spreadView:(MDSpreadView *)aSpreadView numberOfColumnsInSection:(NSInteger)section{ return ...
1
vote
0answers
44 views

How to create temporary object with core model class

I'm new to Core Data and I'm having an issues with creating and then deleting objects. I am trying to download and parse a JSON feed from a web service, then compare the feed data to the data in the ...
0
votes
1answer
33 views

Error's with class methods, and properties of objects in objective c

I'm trying to simple update some text on an app created at my firm before my time. The app is a native iOS app and I'm not familiar with objective C so I'm not sure how to search for these solutions. ...

1 3 4 5 6 7 2705