Anyone know a fix for this?
There is a discussion going on here as well: https://github.com/gotosleep/JASidePanels/pull/164
I know this post is too old but for those users who still have the same problem check my answer here :
https://stackoverflow.com/a/21426077/1572408
Hope it helps :)
Related
I've added breakpoint in ViewDidLoad but when code execute and stop on breakpoint then it shows wrong window (Thread Window) instead of in Code.
showing thread window
I've Xcode 8.3.3 and I think this may be some issue in setting or may be something else, kindly guide me where i did wrong ?
Looking for help. Thanks
After hit and try I finally found solution, I did wrong and mistakenly check Allow Show Disassembly.
Allow Show Disassembly should be unchecked.
Hope this will help others too.
I am going through a iOS Programming tutorial using Xcode 8.1. Everything is going well until I needed to add a valueChanged event to the uisegmentcontrol element. When I drag it to bind to the function it does not work. Here is the gif I made that could explain better. Any help is greatly appreciated. thanks
Edit: Here is another gif of the actual tutorial that shows how the event is bound to the function. The full video can be found here actual tutorial. Thank you
I think you not set the class name of the scene.
E.g.
Name of Class for the Scene: ViewController.m
set StoryboardID if you need.
Thank you all. I just figure out that Xcode now add the parameter Any to all the functions generated. So to be able to bind the event to the function, I needed to change the parameter to AnyObject. I hope it helps someone else in the same situation. :)
The background image is hidden on ios when i put:
background-attachement:fixed
Do you know a fix for this problem?
Thank you.
Just because Attachement do not exist.
The correct is background-attachment: fixed;.
Perhaps I'm missing something obvious but for some reason my Autolayout view doesn't react to rotation of the phone. It works in different sample project I created but I don't seem to be able how and where it's enabled.
Could you please suggest what it can be ? I posted problematic XIB here: http://pastebin.com/Sb6ch6Ln
Ah, it's set in app's plist in parameter UISupportedInterfaceOrientations. Sorry for false alarm guys!
i was having problems to make the MPMoviePlayerController controls disappear.
I tried to do it via:
...
MPMoviePlayerController *mplayer;
[mplayer setControlStyle:MPMovieControlStyleNone];
...
The problem is however that the controls appear for a brief second. I don't want to make my app look unprofessional so making them disappear completely is what i aim for.
There is a suggestion for a solution to this problem, but i in my tests it didn't work. I also tried the old var for solving this but no effect in this case either
mplayer.movieControlMode = MPMovieControlModeHidden; // old var
If anyone can give me hint on how to solve this it would be much appreciated!
Thanks in advance!
Best regards,
zhengtonic
If anyone is interested you can solve this by NOT using the MPMoviePlayerViewController.
Just use the MPMoviePlayerController and it works. Don't know why ...
Much thanks to the ppl on #iphonedev who gave me the tip.
Best regards,
zhengtonic.