0
votes
1answer
47 views
What is the difference between self.managedObjectContext and managedObjectInstance.managedObjectContext?
So, I have the CoreData entities Book, Bookmark, Highlight. A book contains information about the book and an NSSet of Bookmarks.
I want to delete the bookmarks present in one book and then ...
0
votes
1answer
30 views
Getting Seconds interval between NSDate, but get always zero seconds
I want to get diff seconds between NSDate.
I used [NSDate timeIntervalSinceDate] methods, but it returns always zero.
Below is my code.
NSLog(@"sent date : %@", message.sentDate);
NSLog(@"prev: %@", ...
0
votes
1answer
86 views
Preventing iPhone app for inactive state
I need screen ON/OFF callbacks and voice call callbacks. But i am receiving callbacks when my app is in foreground. But i am unable to get delegate callbacks when my app is in background. How is it ...
0
votes
0answers
26 views
Connect to, or as an HID device using CoreBluetooth
Using the CoreBluetooth libs, is it possible to scan and connect to HID devices like mice and keyboards?
Also, is it possible to act as a HID device?
I've tried to scan all available bluetooth ...
-3
votes
1answer
30 views
Image detection in real time [closed]
In my prototype I have to detect an image in real time means when I open the application an camera view is coming and when I bring it in front of my mac mine from any side it should tell that it is a ...
0
votes
1answer
49 views
Putting isCancelled Property in an NSOperationQueue
So, I am using the addOperationWithBlock^{}method of the NSOperationQueue and I want to put the fine grained isCancelled property check at points in the operation code. How do I get the instance of ...
0
votes
2answers
64 views
+100
Reminders.app two-way synchronisation logic
I want my app to synchronise with the Reminders.app. (my app utilizes Core Data)
I've already done a prototype and it works, but there are some bugs I can't think through.
Right now my sync ...
-2
votes
1answer
40 views
What is best way to stream video from server in ios [closed]
I am working on an ios application in which i have to play video from server.
Please suggest me how it is possible in best efficient way.
Thanks.
2
votes
2answers
67 views
NSSetUncaughtExceptionHandler Hijacked by Third Party SDK
Edit: for those who're wondering what that SDK is, it's a Chinese clone of Flurry, ==>> Umeng.
Edit 2: there's actually a disable crash log handling option in that weird SDK, which will make my ...
0
votes
1answer
39 views
Button changes orientation on touch catched. IOS
I had to animate few button in such a way that it looks like they are rotating onto screen from below and managed to do that. In order for the solution to work I needed to change buttons orientation ...
0
votes
1answer
42 views
Change keyboard apperance when using Facebook SDK 3.5 for iOS
I am having a hard time changing the keyboard apperance when the Facebook Login dialog pops up.
The point is that i want the keyboard to be UIKeyboardAppearanceAlert.
I tried with
UITextField ...
0
votes
2answers
45 views
Webview content is not readable after stop animating loading image
I am building one iPhone application where I have two views one for login view and another for web view. When user enters the login credentials, then it will redirect to web view. while loading the ...
0
votes
3answers
77 views
how to determine how much time needed when calling moveItemAtURL:toURL: or replaceItemAtURL:WithItemAtURL:
When moving file from one place to another, or when replacing file, I always use the methods moveItemAtURL:toURL: or replaceItemAtURL:WithItemAtURL: from NSFileManager.
When calling these methods, I ...
0
votes
2answers
35 views
Core Plot Logarithmic axis and panning
I am using a core plot XY Scatter Plot, and I set the plot space scaleType to LOG for logarithmic. When the user zooms, after that, a panning causes the y-axis to scale as well, as if the user was ...
0
votes
1answer
40 views
No data when retrieving NSManagedObject by ID and assigning to property
I am attempting to move all of my edit operations in to their own NSManagedObjectContexts so that any background save operations can continue without accidentally committing unfinished changes. Only ...
0
votes
1answer
109 views
Cocoa Pods duplicate symbol error while using framework
i am using a framework that uses AFNetworking , found that it is stored in the vendor file and i also use AFNetowrking in my podfile in cocoa pods. Removing the AFNetworking functionality in either is ...
0
votes
0answers
56 views
How to use presentViewController when using iOSOpenDev develop ActionMenu Plugin?
i want to present UIActivityViewController by ActionMenu,as you know,presentViewController is a method of UIViewController,but the root class of an ActionMenu Project is UIResponder.So how can i make ...
1
vote
0answers
42 views
On non jailbreak iphone,Can I run a binary in my Application bundle directory?
I have an executable binary file in my App folder. I want to use this App to run this code and I have signed the code with my certificate. But I don't know how to launch it. Fork, execvl and ...
-3
votes
3answers
80 views
Difference between the two simple variable declaration [duplicate]
I start to learn Objective-C & iOS development.
I know that the following code creates a pointer variable *obj of MyObject class:
MyObject *obj = [MyObject myMethod];
I also saw people ...
0
votes
3answers
48 views
Public Header Path, Installation Directory, Search Header Path and other nightmares
I have a project composed of 2 libraries (libraryA and libraryB) and a bundle. Each one of these were created like a project and imported on the main project by dragging them.
Just dragging them were ...
0
votes
2answers
89 views
Learn IOS programming from the ground up [closed]
Lets assume that I have no prior knowledge of programming and I want to get into IOS dev. What would be the best way to go? I want to learn how to develop apps and 3d games. Give me a path that I ...
2
votes
1answer
47 views
How to include everything on the final app
I have a project that is using 2 static libraries I have created, lets call them libraryA and libraryB and a Bundle.
The main project uses libraryA, libraryB and the bundle and libraryA also have ...
0
votes
3answers
61 views
private interface AND multiple implementation
There is a simple Object-C code snippet I got from a iOS project:
@interface store (private)
@end
@implementation store (private)
@end
@implementation store
My questions are:
What does ...
0
votes
1answer
55 views
The long long type defintion [duplicate]
I have only basic objective-c knowledge.
I saw a code snippet of an iOS project, which uses the following statement for a property:
@interface Store : NSObject
{
}
@property (nonatomic) long long ...
0
votes
1answer
21 views
Nibs view in other nibs subview with coreplot, cpgraph takes super view as its attribute
I load a A-viewcontrollers view to other B-viewcntrollers sub view (UIview), A is having graphs with coreplot and initialize CPTgraph. When 'A' is initialize all the property of it like.:array or ...
0
votes
0answers
16 views
iOS bas internatioalization runtime [duplicate]
I'm using storyboard. In my project I've enabled base internationalization and add 2 more langs. I wonder how can I switch the lang runtime from the settings in the app?
Cheers
0
votes
1answer
65 views
OpenGL ES 2.0 How to Correctly Setup glVertexAttribPointers
I'm trying to render some custom 3D object using the basic XCode OpenGL ES 2.0 template. I've been reading Ray Wenderlich's blog on OpenGL ES 2.0 to try to get started. No matter what I do my simple ...
12
votes
5answers
349 views
Static Library path nightmare from hell
This is the point. I have a subproject (static library) created. The library compiles well. No errors. When I include this library inside a project and imports a header from that library on the ...
0
votes
2answers
65 views
including a header from a project into a static library
I have a subproject (static library) inside my project.
As this static library may be used by a bunch of app, I have this config.h file on my project that contains the app configuration. The static ...
7
votes
5answers
222 views
scrollsToTop not working with UIViewController containment
Using SDK 6.1, Xcode 4.6.1, I make a new project Master-Detail iOS App, ARC, no storyboards.
Then in the DetailViewController, in the viewDidLoad I add two UITableViews contained in UIViewControllers ...
1
vote
1answer
72 views
scrollsToTop not working for simple Master-Detail iOS Application
Using Xcode 4.6.1, iOS SDK 6.1, creating a new Master-Detail iOS application (with ARC, no storyboards) and in the DetailViewController I make configureView as:
- (void)configureView
{
...
3
votes
2answers
185 views
How to make a UIScrollView snap to icons (like App Store: Feature)
What I want to get is the same behaviour that this scroll view has:
I know that this is using HTML and not the native API, but I'm trying to implement it as a UIKit component.
Now, to the ...
1
vote
2answers
80 views
Transform inches to centimeters and viceversa
I am quite new to objective-c.
I am trying to create a function that takes inches or centimetres and transform the values into the oposite metric system.
I am currently struggling on how to do a ...
0
votes
2answers
63 views
Download a zip file in nsDocumentDirectory, unarchive and reading it
I have a .zip file at a URL and i want to download it, unarchive and save it into a nsdocument directory without any UI or user interaction. Then reading back.
-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
72 views
Draw a border for view with custom path mask. No UIView subclassing.
I am setting a mask for a view from a custom path. I would like to draw a 1px border according to that mask/path created border.
I am writing one method to style that view:
- ...
5
votes
2answers
730 views
Enable iOS On-Disk Encryption
For my iOS 6+-only app, I would like to enable the On-Disk Encryption offered from iOS.
I read this guide and I saw the "Protecting the User's Data" video of the WWDC 2012 (Session 714). However, I ...
1
vote
2answers
268 views
Property attributes in custom setters/getter
If I create property, for example:
@property NSString *selectedSubProductId;
and create setter and getter:
- (NSString *)selectedSubProductId {}
- (void)setSelectedSubProductId:(NSString *)value_ ...
0
votes
3answers
1k views
NSMutableArray add object from other array at index
Is there any way to do addObjectFromArray:atIndex:?
I have 2 NSMutableArrays. Lets say 1st array is array1 and the 2nd is array2. They ar filled with values. And I need to add item from array1 at ...
22
votes
1answer
11k views
NSURLRequest setting the HTTP header
I need to set the HTTP header for a request. In the documentation for the NSURLRequest class I didn't find anything regarding the HTTP header. How can I set the HTTP header to contain custom data?
3
votes
3answers
915 views
Does every thread need its own autorelease pool?
Does every thread have to have its own pool? I am writing an iPhone app which uses threads. If I do not put a pool on a thread it complains abut leaking.
What I wanted to do was to store some object ...
17
votes
3answers
13k views
How to pass userInfo in NSNotification?
I am trying to send some data using NSNotification but get stuck. Here is my code:
// Posting Notification
NSDictionary *orientationData;
if(iFromInterfaceOrientation == ...
7
votes
2answers
5k views
Quick Explanation of SUBQUERY in NSPredicate Expression
There appears to be zero documentation about the SUBQUERY keyword from Apple and I can't find a simple explanation about it on SO or on Google. It's a conspiracy! ;)
Please, could someone from the ...
7
votes
4answers
4k views
How to tile the contents of a CALayer?
I would like to tile a CGImage across a CALayer, but it seems to only want to stretch it.
The example code:
self.background = [UIImage imageNamed: @"Background.png"];
[documentDisplay.layer ...
1
vote
2answers
898 views
NSUserDefault exists -iPHONE SDK
How would I check in a "if" statement if the NSUserDefault object is saved there or not? I'm not really sure how to call it.. So a pretty short question..
Thanks
36
votes
9answers
3k views
Why [object doSomething] and not [*object doSomething]?
In Objective-C, why [object doSomething]? Wouldn't it be [*object doSomething] since you're calling a method on the object, which means you should dereference the pointer?
41
votes
2answers
10k views
Getting thread id of current method call
Is there a way to print out the current thread id on which the current method is executing on?
(objective-c please)
3
votes
1answer
4k views
Objective C - Using deleteCharactersInRange for NSMutableStrings
How would I use deleteCharactersInRange to remove the first character of a NSMutableString?
209
votes
5answers
122k views
How do I create delegates in Objective-C?
I know how delegates work, and I know how I can use them.
But how do I create them?
202
votes
10answers
54k views
how to throw an exception in objective-c/cocoa?
what's the best way to throw an exception in objective-c/cocoa?




