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
3answers
58 views
Save and Get image from plist
I am developing one app in that getting images from array and display vertically in ScrollView.
when user double tapped on particular image i want that exact image store into plist according to tag ...
-4
votes
0answers
46 views
Generate UIAlert after 10 seconds when speed==0 [closed]
How to generate UIAlert when speedometer speed>=30mph & after 10 seconds delay when speed==0mph
Here is my code
- (void)viewDidLoad
{
[super viewDidLoad];
CLController = ...
0
votes
1answer
13 views
THEOS Error llvm-g++-4.2: Invalid arch name : export [closed]
I'm using iOS SDK 6.1 and am trying to make a jailbreak tweak using THEOS. I used the default tweak template (5), created the project, built it, and got an error:
collect2: ld terminated with signal ...
0
votes
0answers
33 views
Non-documented API & headers
I'm using JavaScriptCore in one of my Objective-C project, and I'd like to know at any time what's the current file & line when falling into a JS callback.
There is no way to do it with the ...
0
votes
0answers
21 views
How to pass Login With Google Process in Cocoa WebView
I am developing a cocoa app for Mac OSX. It's a basic browser application and I use webview component.
In the page I want to connect, there is standard Login with Google Account button in order to ...
-3
votes
0answers
46 views
Get newest file from server in objective c [closed]
I have an app that will display and image and refresh everytime a new image is added to the server how do i tell the app to set the UIimage view to whatever the newest file in the directory is?
as of ...
0
votes
1answer
107 views
Pass Array to NSObject Class
I'm new to iphone app development and I'm stuck on this problem I'm having with the app I'm trying to develop.
I have a datacontroller for populating a tableview. I created it using this tutorial:
...
0
votes
3answers
40 views
Can't Wire to Subview in IB
Quick question. Using IB, I have a subview in a ViewController. In that subview I have a label, which I would like to wire to my custom subview class. However, IB will not let me. What am I ...
0
votes
0answers
30 views
Capture UIWebView screenshot of video?
I'm currently trying to take a screenshot of a video in my UIWebView.
It turns out black though. I'm wondering: 1) Are webview open GL objects? 2) should be trying to capture an OpenGL view? Has ...
-1
votes
2answers
44 views
Using the keyword self on a child class to call one superclass method in Objective-C
It works now, the problem was with Xcode.It was solved by restarting Xcode and trying a clean build, thanks for trying!
Parent Class
CardGame.h
#import <Foundation/Foundation.h>
#import ...
0
votes
1answer
33 views
IOS set and get property on load
I'm trying to initialize a couple properties fetched from parse.com when the view is loaded so I can do calculation with them. For instance, I declare the following in my header file:
...
0
votes
2answers
29 views
NSSplitView - How can I receive a notification AFTER the view has finished resizing?
I need to know when the frame of any NSSplitView subviews have changed, but only after they have finished resizing.
Currently I am using this in an NSSplitView subclass:
[[NSNotificationCenter ...
0
votes
1answer
27 views
UIImageView shows image on simulator but not on iPhone
I've been getting a very weird bug with one of my UIImageViews. I have a UITableView that lists items, and each cell is an item. Each item cell has a thumbnail image, a title, and a subtitle. I am ...
-1
votes
1answer
28 views
Looking for a obj-c equivalent of this openSSL command [closed]
I am looking for obj-c code that is equivalent to this command
openssl enc -aes-128-cbc -k secret -P -md sha1
Once you type the above in command you get this output
salt=538C5F5ECAB7BFA2
...
0
votes
2answers
42 views
How to use NSTimer to stop an action?
On the main view in my app, there is a refresh button. I would like for NSTimer to start on click and if 15 seconds pass and the app cannot connect to the server, I would like for it to stop trying to ...
0
votes
1answer
35 views
Core Graphics - how to crop non-transparent pixels out of a UIImage?
I have a UIImage that is reading from a transparent PNG (500px by 500px). Somewhere in the image, there is a picture that I want to crop out and save as a separate UIImage. I also want to store the X ...
0
votes
0answers
18 views
SSL and NSStream
I tried to use SSL in NSStream over CFSocket connection. So I write this code:
[self.input setProperty:NSStreamSocketSecurityLevelTLSv1 forKey:NSStreamSocketSecurityLevelKey];
[self.output ...
0
votes
2answers
28 views
MKMapView display route
Im pretty new to mkmapview so I'll hope my question will be clear enough.
Let's say I have a code where im saving the userLocation in an array (MKuserLocation type). im saving this for every step the ...
0
votes
1answer
17 views
How to adjust items under UITextView after resizing?
Hi this is the method I use to increase the height of my UITextview:
- (void)textViewDidChange:(UITextView *)textView
{
CGRect frame = textView.frame;
frame.size.height = ...
2
votes
1answer
29 views
Method with variable arguments followed by non-varargs
I get that you can do something like this:
+(id) objectWithItems: (NSObject *) item, ...;
However I was wondering if it was possible to do something like this (I cannot get this to compile):
...
0
votes
1answer
34 views
UIToolbar buttons with UIImage not entirely transparent
I've had this code forever, and it used to work, but it started exhibiting an annoying behavior in, I think, iOS 6. There are several similar threads on SO, but I haven't found a solution that I am ...
0
votes
1answer
21 views
State Change Monitoring
I would like to know if there are any apple Xcode APIs for monitoring state changes before I attempt to build my own. The app I work on changes out several View Controllers. Each controller can have a ...
1
vote
0answers
17 views
Saving an SVM as an exportable file
In my iOS project I have to train an SVM in opencv2 with a large set of images (~40,000). This SVM is static (just train it once with no additional learning). Obviously, this takes a long time to ...
0
votes
1answer
20 views
How to get UITouch location from UIGestureRecognizer
I want to get the UITouch location of my tap from UIGestureRecognizer, but I can not figure out how to from looking at both the documentation and other SO questions. Can one of you guide me?
- ...
0
votes
0answers
15 views
OS X - broadcasting HID events
Good afternoon everyone.
I have a USB gamepad that I'm attempting to write a user-space driver for. Originally, I wrote the driver to work with Linux, and everything seems to work fine there.
...
2
votes
2answers
24 views
Loading images for animation in UIImageView - iOS
I have around 300 images to be loaded for animation the images are named loading001.png, loading002.png, loading003.png, loading004.png………loading300.png
I am doing it in the following way.
.h file
...
0
votes
1answer
18 views
Afnetworking call doesn't seem to be execute
In my applications appdelegate, I am making an api call using afnetworking just to test things out, and I don't see anything in the logs.
Not sure why it isn't working:
- ...
1
vote
0answers
32 views
Rendering to a texture via FBO
I am trying to apply post processing effects to a small test program for OS X. I am trying to render the image into a texture and then render the texture to the screen (i haven't even gotten to ...
1
vote
1answer
33 views
crash on setUserTrackingMode with MKMapView when zoomed in
I have MKMapView with MKUserTrackingModeFollowWithHeading.
But something changes the userTrackingMode to MKUserTrackingModeFollow or None,
so I implemented,
- (void)mapView:(MKMapView *)mapView ...
0
votes
3answers
33 views
Can't fit an image in a tableViewCell
I have a table view with grouped cells. I want one of this cell to contain an image. Here's my code to insert the image and make it fit in the cell :
logoCell = [tableView ...
0
votes
1answer
30 views
Searching with Core Data NSFetchedResultsController
I have a search bar with my table view, but I am not using a Search Display Controller to display the results, instead i'm using my table view.
The code I have appears to work, but I wonder if it is ...
-2
votes
2answers
46 views
UINavigationBar shouldn't scroll with table view [closed]
I have a Navigation Bar, But it scrolling with my tableview. How Can I fixed it?
@property (strong, nonatomic) IBOutlet UINavigationItem *navigationBar;
0
votes
3answers
75 views
Objective-C methods not running
I'm messing around with using objects to launch background threads, however when I call an objects method to call the method that will spawn a background thread, nothing happens. I'm a bit puzzled as ...
0
votes
1answer
29 views
Calculation returns 0 objective-c [duplicate]
I'm trying to calculate an average where i am getting the value from a textfield and multiplying it by the value of a label.
int grade1 = [[self.Cw1Grade text]intValue];
int grade1weight = ...
-1
votes
1answer
54 views
Delphi XE4 conversion from ObjC Class / protocol? [closed]
How to use ObjC Class with Protocol from Delphi XE4 ?
ObjC : Write ObjC Class with protocol
Delphi : Write Interface code
Delphi : Compile & Run App
Delphi : When Press Button in ...
0
votes
1answer
30 views
dismissViewControllerAnimated results in empty screen
I present modal view which is a navigation controller:
UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:photoEditVC];
[self presentViewController:nvc ...
0
votes
0answers
23 views
How do I use QuickLook on IOS from a remote URL
I have an application that needs to allow the user to load a CSV file in order to preview it on the ipad.
I'm getting the following errors.
jornadastudies[22959:907] QLPreviewController's ...
0
votes
1answer
26 views
Opening a ECSlidingViewController from a Normal View Controller
I'm using ECSliding and I have this problem!
In my project there are this files:
InitViewController (ECSlidingController)
FirstViewController (UIViewController)
SecondViewController ...
-2
votes
0answers
34 views
Creating AES-128 encryption file in obj-c [duplicate]
I am working on a mac 10.7 application which needs to spit out a encryption file to the file system like abc.key
I am looking for programming steps like this
// provide password
NSString *pass = ...
0
votes
2answers
20 views
Calling Childview Function
How can I call the function reloadData from ChildViewController?
MainViewController.h
- (void)callChildFunction
{
// Call `reloadData` from `ChildViewController`.
}
ChildViewController.h
...
0
votes
2answers
33 views
tableview does not resize after parent view resize
I have tableview and several controls (text fields, buttons and labels) beneath it.
When keyboard shows up I can either reduce parent view height or slide it up so my controls are accessible.
That ...
0
votes
1answer
20 views
AutoLayout and animateWithDuration problems
I'm updating my iPhone app for the iPhone 5's larger screen, and there seems to be a problem with animateWithDuration:. Before I turned on autolayout, the interface elements would move slightly up the ...
1
vote
1answer
41 views
NSUserDefaults working on device and simulator but returning NULL on device when installed via .ipa
I am encountering very strange problem.
I am saving users email and a encrypted key with [[NSUserDefaults standardUserDefaults] synchronize] for login to my webserver with my ipad app. This method ...
0
votes
1answer
15 views
presentModalViewController causes sigabrt inside UINavigationController in IOS 5.1 [duplicate]
Now, at the moment my application consists of a UINavigationController, which then passes (via a button) to a normal UIViewController, which then uses presentModalViewController to load another ...
0
votes
1answer
14 views
Get DidEndScroll Delegate Method from Custom UITableView
I am using the a custom UITableView called UIBubbleTableView.
In my View Controller that I am setting up the UIBubbleTableView everything works fine. I however am trying to implement lazy loading so ...
0
votes
1answer
24 views
Objective C - UIImage resizing not working
I have a program that fetches an image from the library, but I'm using code I found online to resize that image so that it can fit on the screen (basically making it 640x960), but then it would still ...
0
votes
2answers
79 views
Animation starts but does not seem to continue
Im trying to do an animation in ios, I copied a working example (which worked for me) however I edited it to have a longer animation: press the button to start the animation, it shows the first image, ...
0
votes
1answer
38 views
Set target of UIButton to IBAction not working (Objective-C)
Is there any reason the following code for setting the target of a UIButton to an IBAction programmatically shouldn't work?
.h
- (IBAction)googleIt:(id)sender;
.m
UIButton *google = [[UIButton ...
1
vote
1answer
20 views
How to make alternative name for UILabel's text attribute?
Probably a real newb question. I've got a UILabel called routeOutLabel. I want to make it easy to access its text attribute.
I was thinking of doing something like this:
@synthesize routeOutText = ...
0
votes
0answers
29 views
Using a subclassed UILabel in a UIView category with Associated References
I'm trying to use the MTAnimatedLabel class (https://github.com/mturner1721/MTAnimatedLabel) inside of a UIView Category (scalessec's iOS Toast from here: https://github.com/scalessec/Toast)
I ...



