Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bgborder #54

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
f7009f5
Ignore XCode noise.
jum Apr 15, 2011
3f6f469
Changing this to >= at least allows the arrow to point to all sides,
jum Apr 25, 2011
718db08
Fix strict compiler warnings.
yood Jan 24, 2011
7c6e5dc
Fix clang compiler semantic warning.
yood Mar 5, 2011
8d69c93
Merge branch 'master' of git://github.com/werner77/WEPopover
jum May 5, 2011
a2b8cbd
Implemented passthroughViews as specified in the UIPopoverController
May 6, 2011
62e4317
Added presentPopoverFromBarButtonItem method as specified by the UIPo…
May 6, 2011
39ab280
Added missing files (forgot to check them in)
werner77 May 6, 2011
b8873fd
Fixed bug in passthroughViews functionality in TouchableView: touches…
werner77 May 7, 2011
c4a45a1
Fixed support for interface rotation
werner77 May 7, 2011
77cd2b4
Fixed positioning issues of popover
werner77 May 8, 2011
8238fba
Removed supported popover directions left and right for bar button item
werner77 May 8, 2011
0154909
Fixed bug with positioning when popover display area lies outside the…
werner77 May 8, 2011
940ed7b
Modified README
werner77 May 9, 2011
7b073e2
Merge branch 'master' of git://github.com/werner77/WEPopover
jum May 9, 2011
7bbc45c
Botched last merge, these files where left over.
jum May 9, 2011
0c2bcef
Fixed bug: contentSizeForViewInPopover was not taken into account if …
May 24, 2011
ded16db
Merge branch 'master' of git://github.com/werner77/WEPopover
jum Jun 26, 2011
6342a53
Merge branch 'master' of git://github.com/werner77/WEPopover
jum Sep 18, 2012
06c5c71
Merge branch 'master' of https://github.com/werner77/WEPopover
Mar 3, 2014
c3a3d46
Merge branch 'master' of https://github.com/werner77/WEPopover
Mar 8, 2014
660c194
We need one pixel more here to avoid a gap to the arrow.
Mar 13, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# xcode noise
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.perspectivev3
!default.perspectivev3
*.xcworkspace
!default.xcworkspace
xcuserdata
profile
*.moved-aside

# osx noise
.DS_Store
2 changes: 1 addition & 1 deletion Classes/Popover/WEPopoverContainerView.m
Original file line number Diff line number Diff line change
Expand Up @@ -431,4 +431,4 @@ - (void)determineGeometryForSize:(CGSize)theSize anchorRect:(CGRect)anchorRect d
}
}

@end
@end
2 changes: 1 addition & 1 deletion Classes/Popover/WEPopoverController.m
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ + (WEPopoverContainerViewProperties *)defaultContainerViewProperties {

contentMargin = 4.0;

bgMargin = 12;
bgMargin = 13;
bgCapSize = 31;

props.arrowMargin = 4.0;
Expand Down
2 changes: 1 addition & 1 deletion Classes/Popover/WEPopoverParentView.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
@optional
- (CGRect)displayAreaForPopover;

@end
@end