I want to call a method of another kind that shows a screen, the problem is that trying to call it from another class does not do anything.
I do it in this way example:
NameClase *c = [[NameClase alloc]init];
[c metodo];
or
[[c init]me...
I have some buttons that when clicking on them, load a text. It works on my computer and on Android but not on Iphone ( it takes me to the top of the page ). This is the code I use.
<script type="text/javascript">
$(document).ready(fun...
I am creating a radio app, but when I want my play and pause buttons to work with MPNowPlayingInfoCenter , only play appears. em> and it does not change to pause .
I hope you can help me.
if NSClassFromString("MPNowPlayingInfoC...
How can I go back to the previous view but when I come back?
example with arrows and dots:
I'm here º
and I'm back with [_controladorSuite.controladorDeNavegacion popToRootViewControllerAnimated:NO];
as I return from where I retu...
I have created a starting skeleton of a project with a specific name and some libraries. I want to use this project skeleton to build other projects in the future.
How should I work to reuse it?
Right now I need to change the name of the project...
How can I see the components of a view within another view?
As I see the components of the main view:
NSArray *sub = [self.view subviews];
if ([sub count] == 0) return;
for (int i=0; i<sub.count; i++){
NSLog(@"Subview: %@", sub[i]);
}...
Good morning,
since yesterday it is giving a supposedly server error when uploading applications. Is it an Apple problem? or is it something of mine?
Thank you.
I have a button but in iOS Safari it looks different. I have tried with this code -webkit-appearance: none; and it does not work for me.
This is the CSS of the button (also in JSFiddle ):
button {
padding: 5px 20px;
over...
I have several PDFs on my device for the application I'm designing, I tried it with the plugin inAppBrowser and the event window.open but it did not work.
My code now is like this:
<a href="#" window.open('pdf/visitas/Lista...
I have this code to capture an image in xamarin ios, but it does not do anything.
private void DoTakePicture()
{
try
{
_pictureChooserTask.TakePicture(400, 95, OnPicture, () => { });
}
cat...