New answers tagged ios
0
Here is a xib of my subView. Files owner is ViewController_iPhone and custom class of a View is subView1. And I wanted to bind files owner property view with View but I got error.
1
You can easily accomplish this,
Step 1 : Open your GCMIntentService.java file
Check for the method onMessage
in that method you will find from here they are passing the intent to your MyPhoneGapActivity.java ...Now what you have to do is you pass some extra information....
Passing some extra information to the intent
Check for this line
Intent ...
0
I think, Use web-service to communicate with web database. It is easy to use because you are using this database for both android and ios.
Thanks.
0
The best way I suggest is to use APIs.
You can create APIs to access the database through your mobile application.
You website will also be using the same database, and your mobile application will be calling the APIs to get data from the database.
May be this can help you to get started: ...
1
Since the three view controllers may be interested in the response, don't make it in any of them. Create a class, let's say NetworkHandler with method - (void) makeRequest. You can make it a singleton or add it to the AppDelegate.
In C, call this method.
When - (void) makeRequest finishes the call, make an NSNotification and make the all the three view ...
0
0
You can have 2 different mappings for the same path pattern so long as they are to be used for different purposes (like GET and PUT). RestKit needs to be able to tell which one to use, as long as it can everything's fine.
There are 2 ways to do a PUT though:
objectManager putObject:...
This will automatically try to map the response onto the source ...
0
Try with
- (IBAction)menuRightItem2Touch:(id)sender {
if([_menuRightItem2 isSelected])
{
[_menuRightItem2 setSelected:NO];
}
else{
[_menuRightItem2 setSelected:YES];
}
}
1
Use a Singleton class to do all the network stuff. Here is a good tutorial to create a singleton class in case you don't know how to create one
0
Following link would help you:
http://www.raywenderlich.com/336/how-to-auto-complete-with-custom-values
All the code you need is ready there. Just give the names 'Aron,Maria,Alex,Cassie,etc,' you need to display in the autocomplete list in the NSMutableArray named as 'pastUrls' in the above link.
0
Try to use this one
cell.accessoryView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"flechalinterna.png"] highlightedImage:[UIImage imageNamed:@"flechalinterna.png"]];
0
From the Apple Documentation in regards to UIAlertView Class Reference
Subclassing Notes
The UIAlertView class is intended to be used as-is and does not support subclassing. The view hierarchy for this class is private and must not be modified.
So to get the sort of customization you are talking about you would have to subclass ...
0
sorry,it is my mistake:[UItextView.text setValue:@"bigblah blah" forKey:@"contentToHTMLString"]; i cannot use text.sorry
0
This is a solution in QT
QProcess proc;
QStringList args;
args << "-c" << "ioreg -rd1 -c IOPlatformExpertDevice | awk '/IOPlatformSerialNumber/ { print $3; }'";
proc.start( "/bin/bash", args );
proc.waitForFinished();
QString uID = proc.readAll();
qDebug()<<uID;
uId is the serial number
1
UIKit is not thread safe. taskQ is not the main queue, so command A will execute on a global queue not the main queue.
Consider making taskQ the main queue, or making command A execute on distpatch_async on the main queue.
0
Finally got solution, after deselect option of user Autolayout from nib file. Thats strange but it solved.
0
UISwipeGestureRecognizer *recognizer;
recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeLeft:)];
[recognizer setDirection:(UISwipeGestureRecognizerDirectionLeft)];
[contentView addGestureRecognizer:recognizer];
recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeRight:)];
...
1
I think While these kind of adding customizations to a UIAlertView is strongly discouraged by Apple You can Use the UIAlertView delegate Function to detect which button is pressed and can reaction on as required.
UIAlertView *alert = [[UIAlertView alloc] init withWithTitle:@"Title" message:@"message" delegate:self cancelButtonTitle:@"Cancel" ...
0
Well , I tried to implement your code on basis of this understanding:
*_menuRightItem2* is UIButton and is listening for UIControlEventTouchUpInside events using (IBAction)menuRightItem2Touch:(id)sender method.
There are two sliders (IBOutlets) slider 1 , slider2. Both listen for ValueChanged Events using -(IBAction) sliderValueChanged:(UISlider)sender*.
...
0
You can use a NSTokenField replacement there is some libraries here :
tokenField libraries
0
It will always start with index.html because when clicked on the push notification it comes to android appliction(MyPhoneGapActivity in your app),from here calling to index.html, so you need to custom your MyphoneGapActivity for calling two index pages one for normal app another for notification
1
Use this mate. It works fine!!
if ([MFMailComposeViewController canSendMail]) {
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
[picker setSubject:@"SUBJECT OF THE MAIL!"];
NSData *myData = UIImageJPEGRepresentation(IMAGE_TO_SEND, 0.9);
...
0
I've just set up a project with Restkit today. Just make sure you have something like me:
My Rakefile which uses Bundler
# -*- coding: utf-8 -*-
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project/template/ios'
require "rubygems"
require 'bundler'
Bundler.require
Motion::Project::App.setup do |app|
app.name = 'AppName'
app.pods do
pod ...
0
You have to use
- (void)addAttachmentData:(NSData*)attachment mimeType:(NSString*)mimeType fileName:(NSString*)filename
Parameters attachment The data to attach. Typically, this is the
contents of a file that you want to include. This parameter must not
be nil. mimeType The MIME type of the specified data. (For example,
the MIME type for a JPEG ...
0
You can use a custom back button for the navigationBar
I suggest you to check this Controller
0
I can't seem to find information about modifying the title attributes (text color, shadow color, etc.) of the back button - of course you will not find.
As per UINavigationItem Class Reference
If you want to specify a custom image or title for the back button,
you can assign a custom bar button item (with your custom title or
image) to this property ...
0
I think it looks for something like ~/.ssh/id_rsa and cannot find it when you run from browser (user www or www-data)
0
I think this link will solve your problem.As the author described it very nicely..
http://stackoverflow.com/a/8509545/1865424
still have issue.please let me know..
Enjoy..
0
As the error message indicates, You should install iOS certificate on your Mac.
0
Do you have a new mac? in that case you have to copy the certificate reference from your old mac. I had this problem and it was work with the certificate, check them out in keys
0
It could be as simple as moving your code from viewWillDisappear to viewDidDisappear.
Also, avoid using animations in any view*appear methods, as the view-transition is already being animated.
0
I dont have enough reputation points so I cant comment, but please make sure that Date and Time of your Mac is correct.
1
You must have the private key that is generated when you create the development certificate. (This private key is called p12 certificate)
0
To test on your device you need a valid provisioning profile with the related certificate and the iPhone must be provisioned in that provisioning profile
1
If the header files aren't supplied use NSClassFromString.
if([subview isKindOfClass:NSClassFromString(@"ExternalBinaryView")])
{
ExternalBinaryView* _foo = subview;
}
0
To change font color to white and make text align center add this
self.poundsTxt.textColor = [UIColor whiteColor];
self.poundsTxt.textAlignment=UITextAlignmentCenter;
To change border color to white and to give a width to border add this
self.poundsTxt.layer.borderColor = [[UIColor whiteColor]CGColor];
self.poundsTxt.layer.borderWidth=2.0;
import ...
0
As of May 20th 2013, Pinterest have released an iOS SDK for pinning content.
Check out their Developers site for more information.
0
As of May 20th 2013, Pinterest have released an iOS SDK for pinning content.
Check out their Developers site for more information.
0
If you are using NSTimer to schedule method call then add in -(void)viewwilldisappear
Timer invalidate code so that before going to next view controller.
0
I don't think it is a very practical way to do it in IB. A better approach would be to do it in code.
0
Found the cause for this issue ... If MovieViewController was created, and it's currently buffering (i.e state != MPMovieLoadStatePlayable or MPMovieLoadStatePlaythroughOK) calling 'play' method will crash the app with this exception.
0
This is what you need, opencore-amr
It is extracted from Android source, and it's cool, portable to iPhone
0
If you have clicked on "Remove Reference", the reference is removed from the Xcode but the file is safe in your project's root folder.
You can add View Controller back by
RightClick On Project - > Add New Files to Project -> Browse to root folder of your project and select the viewController.
If you have clicked on "Move To Trash", the files have been ...
4
I think you can do it this way
NSString *list= @"abcdefghijklmnopqrstuvwxyz";
NSString *password= @"abz"; // Suppose this is your password
NSRange range = [list rangeOfString:password options:NSCaseInsensitiveSearch];
if (range.location == NSNotFound) {
/* Could NOT find password in list, then it is valid */
}
else {
/* Found the password ...
0
does this mean that the device (an iPhone 5) has "run out of memory"?
No. It is relative to peak active memory used in that run. Illustration: you would likely see the allocation amount at 1 minute "shrink" when you start creating all those views around 2 minutes.
0
have look at this, this might help http://developer.apple.com/library/ios/#documentation/Social/Reference/Social_Framework/_index.html
0
The code supplied has a small but easily rectifiable error in it. It should read:
imageView.frame = CGRectMake(imageView.frame.origin.x, imageView.frame.origin.y,
img.size.width, img.size.height);
1
I have designed a similar page using customized UINavigationBar for top bar and customized UIToolBar for bottom bar.
Following link helped me in customizing navigationBar.
http://www.raywenderlich.com/4344/user-interface-customization-in-ios-5
The following Toolbar looks similar to what you have posted.
http://www.mobilebricks.com/ios/altoolbar
For ...
0
I am using ASIFormDataRequest for the same, its working fine and give response in seconds.
UIImage * img = [UIImage imageNamed:@"Elephant.jpg"];
NSData *imageData = UIImagePNGRepresentation(img);
NSString *strURL =YOUR URL";
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:strURL]];
[request setDelegate:self];
[request ...
1
I am assuming that you are adding custom buttons to leftBarButton through code.
The following code should restrict the touch inside the bounds of barButtonItem
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setImage:buttonImage forState:UIControlStateNormal];
button.frame = CGRectMake(0, 0, buttonImage.size.width, ...
Top 50 recent answers are included













