Objective-C 2.0 is a revision of the Objective-C language created by Apple to include, amongst other things, an enhanced syntax.
0
votes
0answers
18 views
AFDownloadRequestOperation 206(Partial Content)
need some help.
I download a zip file with library (AFDownloadRequestOperation).
After download is finished it gets only a part of file. Wen I look at code and state, I get a 206(Partial Content). I ...
-1
votes
0answers
12 views
How do you add effects to specific sections of an UIImage? [closed]
I am writing an application similar to iPhoto. One feature that I would like to add is the ability to edit only a specific section of a photo. I know how to edit the entire photo but the problem is ...
0
votes
0answers
10 views
NSColorPanel Level
I'm making an app with a fullscreen transparent window. The preferences have a color well, showing up an NSColorPanel. I tried changing the level of this panel :
[[NSColorPanel sharedColorPanel] ...
0
votes
3answers
40 views
I intend to call default init method in init method with arguments
I intend to call default init method in init method with arguments, in iOS. like this:
-(id)init{
self = [super init];
if (self) {
Office = [[NSString alloc]init];
}
...
2
votes
0answers
51 views
VoIP equivalent of Coretelephony
I have Coretelephony working for monitoring incoming and outgoing calls, however, I also needs this functionality for VoIP calls. Is there are framework with similar features as coretelephony but for ...
2
votes
2answers
117 views
override retain/release under ARC
I have an ARC enabled application that using a MRC(non-ARC) static library. In the static library, retain/release are overridden to provide some custom weak ref/cache behavior ([super retain/release] ...
1
vote
0answers
37 views
Bug dynamically subclassing a UIViewController
Summary
I am trying to dynamically subclass objects to do some cleanup before dealloc. I add a subclass to the object and add my own dealloc method that does the cleanup and then calls [super ...
0
votes
0answers
54 views
Error code 512 while calling setUbiquitous:
I know this question has been asked before but so far none of the posts that I found solve my problem.
Here's my codes
NSURL *ubiquitousPackage = [[ubiq URLByAppendingPathComponent:
...
0
votes
0answers
21 views
iCloud Document hardly sync after first launch
I'm using UIDocument method to store data in iCloud.
So I have 2 devices to test, when I first launch the app on iPhone, then I do some changes then call saveToURL:completionHandler, after that I ...
0
votes
0answers
46 views
Key-Value iCloud storing not working
I'm using KeyValue store but it doesn't working.
During first launch, it will detect whether the key is found in the NSUbiquitousKeyValueStore, else it will create a new one and store it.
...
1
vote
4answers
116 views
What does hexadecimal expression 0x80000000 mean in enumeration declarations in C language
I'm reading the code of an iPhone sample project (Xcode IDE, Apple LLVM compiler 4.2). In a header file of an external library (written in C) for that iPhone sample project, there're some events ...
1
vote
1answer
156 views
Method Swizzling isEqualToString
I'm running into some odd behavior when trying to Method Swizzle isEqualToString: on the NSString class. Here is the code in question:
#import <Foundation/Foundation.h>
#import ...
0
votes
1answer
132 views
custom framework in xcode 4.6
I would like to create my own framework to hide the implementation of the classes and to be able to re-use the the classes.
Did they add the ability to create these in 4.6?
0
votes
2answers
85 views
Difference between two dates for countdown timer implementation [closed]
How is possible that the difference between two dates is wrong (2013-04-04T19:14:58+02:00-2013-04-03T18:14:58+02:00) ?
The result of the code is
01 days 06 hours 46minutes 02 seconds
the ...
0
votes
0answers
88 views
How to check Objective-C 2.0 ARC in gnustep linux
I wanna check ARC write back in linux gnustep environment (I prepared that by this article).
I have main.m file:
#import <Foundation/Foundation.h>
__weak id obWeak;
int writeBack(id *);
int ...
0
votes
2answers
37 views
Why is my primitive type state being preserved between instances?
I have a view controller with a BOOL property (not a pointer) which I assumed would be NO or just garbage seeing as though it doesn't get assigned in viewDidLoad. The BOOL gets assigned when it is ...
0
votes
1answer
101 views
Limit the result that I got from FBRequestConnection
I'm using Facebook iOS SDK to retrieve the data from Score.
Below are my codes...
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
...
0
votes
2answers
110 views
NSTimer can't start or run in a NSThread function?
I want to use NSTimer to run a functions per 20 seconds,but I put the NSTimer in a NSThread function.the code is like this:
-(void)func1
{
[NSThread detachNewThreadSelector:@selector(func2)
...
1
vote
1answer
29 views
Does Objective-c require you to have different classes for every instance of UIPickerViews
I have three different search pages all running off of my Search View Controller. Each one has a different search method, but the screens are basically the same. selections from the picker will ...
1
vote
1answer
70 views
Timestamp. Difference between two times
I'm trying to make a timestamp-app where you capture the times with one button.
When the button is pressed it prints out the current time 00:00:00.
When the button is pressed the second time it ...
0
votes
1answer
128 views
How to store NSDictionary in iCloud
I'm new to iCloud integration, I did found some tutorials but I still couldn't get the solution I want.
I found that there are 3 ways of saving the data to the iCloud
1) Key-Value
2) Core-Data
3) ...
1
vote
0answers
85 views
App crash on Twitter iOS 5.1, when memory warning is simulated.
if ([TWTweetComposeViewController canSendTweet]) {
// Initialize Tweet Compose View Controller
TWTweetComposeViewController *vc = [[[TWTweetComposeViewController alloc] init]autorelease];
// ...
2
votes
1answer
287 views
Green box on iPhone 5 camera
I use an UIImagePickerController to show rear camera as background.
Everything works as expected, but in iPhone 5 and maybe in iPhone 4s I have a green box in the image like
I think is a face ...
2
votes
1answer
68 views
Why change the name of getters and setters in Obj-C?
I've just learned that you can modify the automatically generated getter and setter names for Objective-C properties
// boolean property of "door" object in game
@property (strong, nonatomic, ...
4
votes
1answer
114 views
Having trouble understanding Objective-C Block Documentation
I'm currently having trouble understanding the fundamentals of Obj-C blocks and the __block storage type. From the following documentation:
...
1
vote
3answers
83 views
Is it safe to override an NSObject method with a Category. Is at affect the system as well
I it might sound a silly question, but I still afraid of doing so. Because I would like to override an NSObject method, namely addObserver: with a Category. Does it has an effect on other apps running ...
0
votes
1answer
32 views
Implicit object pointers in Objective-C
I'm teaching myself Objective-C 2.0 using Apple's Programming With Objective-C guide.
I have a question regarding what I believe to be implicitly created pointers.
If I were to rewrite the example ...
0
votes
2answers
134 views
Row Order in UITableViewCell is wrong
This is a simple class that extended UITableViewController, there's only one section total 5 rows. but when launch app, only show 2 record, when pressed the button, it will show more records with text ...
1
vote
1answer
76 views
Double division loses decimal places in objective-c
What do I have to do to have more than just one decimal place when dividing floats and doubles.
The code is:
double *dbl; //In fact this is a parameter of the function
double *kg;
double ...
1
vote
1answer
271 views
Can't send message via IOS socket
I'm building an IOS socket client using CFStream. I've managed to connect to my test server and receive messages from it. The problem is if client sends a message server can not receive it, and after ...
0
votes
1answer
55 views
Dynamically call a method from unknown source file
I need to call a method from one class to another class whose class name will be taken from file (dynamically)
Example:
I have a file named Source1.h/Source1.m (both are objective C class ...
0
votes
2answers
76 views
Dynamically call a method from another class in Objective C
I am trying to call a method from another class which is in another source file.
Example:
I have a file named Source1.h/Source1.m (both are objective C class files)
I have another file names ...
0
votes
1answer
65 views
Objective C: releasing objects basic questions (non-ARC)
I have two rookie questions about memory management in non-ARC project without GC:
in Objective C,when I 'autorelease' object and return it from method, should I 'release' it in the "parent method" ...
0
votes
1answer
108 views
Checking device version during compilation (macro)
I know this topic might be a very commonly asked question but I still couldn't get the solution.
Firstly, I know there are two methods to check OS version
1)
[[UIDevice currentDevice] ...
0
votes
1answer
142 views
How to get all images from ftp folder in to an NSArray
Ok so I have an FTP server that has a folder of images. This folder of images isn't always the same. The number of images could be different along with the file names. I am able to get an image to ...
0
votes
0answers
133 views
expected char but argument is of type char *
i am learning objective c in windows using GCC.
when i compile with cygwin or minGW bith shows the same error
$ gcc -o func func.c
func.c: In function 'main':
func.c:10:1: warning: passing argument ...
2
votes
3answers
2k views
Warning when dismissing view controller programatically
I have a TableViewController with a button that triggers an [NSURLConnection sendAsynchronousRequest...] event, and also loads a modal segue through performSegueWithIdentifier:sender: which targets a ...
0
votes
1answer
57 views
Proper template for my iOS App
I am building an iOS app, where I am doing a condition check for existance for a particular data. Please find the code I am using for Android,This condition check is done inside SplashScreenActivty
...
0
votes
1answer
90 views
Creating my own custom button selector in cocos2d
what I want to do is I created my own button class but I need to provide the ability for the developer to have their own button callback.
For example, I can declare a new button in this way:
Button* ...
0
votes
1answer
107 views
Objective-C self variable check
I am reading the Cocoa Design Patterns books. In the books, after assigning the self variable, it is checked whether self is nil like below
if( nil != self){
// code
}
I have also seen another way ...
0
votes
0answers
287 views
Cocos2d - remove opengl drawing without clearing the render texture
I trying to achieve something like the spotlight demo here:
http://www.supersuraccoon-cocos2d.com/2011/09/09/spot-light-demo/
I managed to add several spotlights to the render texture, but I still ...
0
votes
0answers
83 views
imported Class, its class methods, and two extern variables failing
I am working on a project that uses a Controller Class to update UserDefaults for my application in Mac OS X. I created a "Preference.xib" document using the NSPanel class for the window. I put some ...
2
votes
2answers
163 views
is there anything in Objective C similar to C# yield return
is there anything in Objective C similar to C# yield return ?
0
votes
3answers
112 views
passing in a method in Objective C
In C# you can create a delegate method, assign it to a variable or pass it into a method as if it were a variable. For example:
public delegate int Lookup(String s);
//...
public static int ...
0
votes
1answer
54 views
How can i upload image and data in the same request?
I would like to know how can i upload image and some data in the same NSMutableRequest
- (void)startAsyncRequest
{
// Setting of the request
NSMutableURLRequest *urlRequest = ...
2
votes
5answers
161 views
Best practice on using @property ivars
Could someone share some knowledge on whats best practice / code convention on using @property iVars in init methods or designated initializers?
please see my example:
@interface MyClass ()
...
2
votes
2answers
311 views
Admob banner position not coming correct in ipad/iphone
I have implemented admob in my 2d game, i am using cocos2d for developing this game, can any one help me to set the position admob banner, I have universal game which is in portrait mood, i want to ...
2
votes
4answers
137 views
Need some advice on object oriented design for an iOS project
I have a few questions about code design. This might be long. I'll shorten it whereever possible.
Q1) Dependant or Independant?
Creating a class and adding required functionality so as to allow ...
0
votes
3answers
425 views
method to return the intersection of 2 rectangles
I'm new to programming and objective-c (so i could be way off here) and i'm working my way through programming in objective c 4th edition text book and have become stuck on one of the exercises.
Can ...
0
votes
2answers
291 views
Adding In-App Purchases (Cocoa) - Simple Tutorials?
For a total noob, are there any recommended tutorials to implement in-app purchases (non-consumable)?

